比较三个数,输出三个数的大小排序?
论文问答
1
如何比较三个数,并进行大小排序?
-
#include<stdio.h> int main() { void swop(int &x, int &y); int a, b, c; scanf("%d %d %d", &a, &b, &c); swop(a, b); swop(a, c); swop(b, c); printf("\n"); printf("%d %d %d", a, b, c); return 0; } void swop(int &x, int &y) { int t; if(x > y) { t = x; x = y; y = t; } }
这个可以出来结果吗??。。。
-
#include<stdio.h> int main() { void swop(int &x, int &y); int a, b, c; scanf("%d %d %d", &a, &b, &c); swop(a, b); swop(a, c); swop(b, c); printf("\n"); printf("%d %d %d", a, b, c); return 0; } void swop(int &x, int &y) { int t; if(x > y) { t = x; x = y; y = t; } }
发表回复