#include<stdio.h> int main(void) { char a,b,c; while(scanf("%c%c%c",&a,&b,&c)!=EOF) { getch

2024-12-04 14:19:17
推荐回答(1个)
回答1:

A,B,C冲小输出到大吗?
我这个你可以看下自己改下。我也是新手
#include
int main()
{
int x, y, z, t;
printf("please input x,y,z:");
scanf("%d,%d,%d", &x, &y, &z);
if (x>y)
{
t = x;
x = y;
y = t;
}
if (x>z)
{
t = z;
z = x;
x = t;
}
if (y>z)
{
t = y;
y = z;
z = t;
}
printf("%d,%d,%d \n", x, y, z);
return 0;
}