#include "conio.h"
main()
{int a,s,d,f,g;
printf("please input 4 wei shu\n");
scanf("%d",&g);
a=g/1000;
s=g%1000/100;
d=g%1000%100/10;
f=g%1000%100%10;
if (a>s>d>f) printf("%d",a);
else if(s>a>d>f) printf("%d",s);
else if(d>s>a>f) printf("%d",d);
else printf("%d",f);
getch();
}
要求是:输出4个数中最大的一个。
错误就是少了个头文件了
已经帮你改过来了
如果我的回答你还满意
记得选为满意答案哦
#include "conio.h"
#include "stdio.h"//缺少头文件
main()
{int a,s,d,f,g;
printf("please input 4 wei shu\n");
scanf("%d",&g);
a=g/1000;
s=g%1000/100;
d=g%1000%100/10;
f=g%1000%100%10;
if (a>s>d>f) printf("%d",a);
else if(s>a>d>f) printf("%d",s);
else if(d>s>a>f) printf("%d",d);
else printf("%d",f);
getch();
}