1110: 零起点学算法17——比较2个数大小

1110: 零起点学算法17——比较2个数大小

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 3272  Accepted: 1639
[Submit][Status][Web Board]

Description

输入2个整数,按照从大到小输出

 

Input

2个整数n和m(多组测试数据)

 

Output

按照从大到小输出,中间用空格隔开(每组测试数据一行)

 

Sample Input

 
14 32
2 3

 

Sample Output

32 14
3 2

 

Source

 
 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 }

//中间变量交换法

posted @ 2017-04-06 23:58  Dollis  阅读(1563)  评论(0编辑  收藏  举报