输入2个整数,按照从大到小输出
输入2个整数,按照从大到小输出
2个整数n和m(多组测试数据)
按照从大到小输出,中间用空格隔开(每组测试数据一行)
14 32
2 3
32 14
3 2
1 #include<stdio.h> 2 int main(){ 3 int n,m; 4 while(scanf("%d%d",&n,&m)!=EOF){ 5 int t; 6 if(n<m){ 7 t=n; 8 n=m; 9 m=t; 10 } 11 printf("%d %d\n",n,m); 12 } 13 return 0; 14 }
//中间变量交换法
原文:http://www.cnblogs.com/dddddd/p/6676131.html