max = a>b?a:b;
max = max>c?max:c;
补充:大一了还解决不了这种问题....
main()
{int a,b,c,max;
printf("please input a,b,c value :\n");
scanf("%d%d%d",&a,&b,&c);
max=a;
if(b>max) max=b;
if(c>max) max=c;
printf("the max value is %d\n",max);
getch();
}
兄弟,要努力啊!!!!!!!!!!!!!!!
main()
{ int a,b,c,d;
scanf("%d%d%d",&a,&b,&c);
if(aelse d=a;
if(d>c) printf("%d",d);
else printf("%d",c);
getch();
}
累了,我回答了好几个这个问题了……
楼主自己搜一下吧,就在百度知道里面搜,准能搜到
变态呀