小白,求帮助,求源代码
编写一个程序,让三个整数按照从大到小的顺序排列,已经弄了两天了,实在写不出来
回复 2楼 书生牛犊
#include<stdio.h>int main()
{
int a,b;
scanf("%d,%d",&a,&b);
if(a>b)
{
printf("%d,%d\n",a,b);
return 0;
}
else
{
printf("%d,%d\n",b,a);
}
return 0;
}
我是初学者