编写一个程序。从键盘输入3个整数,输出其中最大数。
正确答案:
#include
void main()
{
int a,b,c,max;
printf(“Please input 3 integers:/n”);
scanf(“%d%d%d”,&a,&b,&c);
max=a;
if(b>a)max=b;
if(c>x)max=c;
printf(“Max=%d”,max);
}
void main()
{
int a,b,c,max;
printf(“Please input 3 integers:/n”);
scanf(“%d%d%d”,&a,&b,&c);
max=a;
if(b>a)max=b;
if(c>x)max=c;
printf(“Max=%d”,max);
}
答案解析:有
微信扫一扫手机做题