Description
输入两个整数,请编程求其中的较大者。
Input
在一行中输入用空格隔开的两个整数,例如5 9。
Output
输出两个整数之中较大者,输出形式举例:max=9。
Sample
Input
5 9
Output
max=9
#include <stdio.h>
int main()
{
int a,b,max;
scanf("%d %d",&a,&b);
if(a > b){
max = a;
}else{
max = b;
}
printf("max=%d",max);
}
© 版权声明
吾爱博客|AYFRE.COM 版权所有,转载请标明出处。
THE END
请登录后查看评论内容