我是个C语言初学者,有个C 语言题请教高手。我太穷没有财富值 给哈!

2024-12-29 18:57:21
推荐回答(2个)
回答1:

int main(void)
{
int a, b, c, tmp;
scanf("%d,%d,%d", &a, &b, &c);
if (a > b) {
temp = a;
a = b;
b = temp;
}
if (a > c) {
temp = a;
a = c;
c = temp;
}
if (b > c) {
temp = b;
b = c;
c = temp;
}
printf("%d,%d,%d\n", a, b, c);
return 0;
}

做任务~ 希望采纳

回答2:

典型的冒泡法排序。。。