两个值比大小,输出较大值,卡死,不知道错在哪了,只要小神就够了
#include <stdio.h>int main()
{
int a,b,c;
scanf("%d,%d\n",&a,&b);
if(a>b)c=a;
else c=b;
printf("%d\n",c);
return 0;
}
2017-10-15 22:24
2017-10-15 22:56
2017-10-15 23:36
[此贴子已经被作者于2017-10-18 21:32编辑过]
2017-10-18 21:31