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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 }

//中间变量交换法



以上是关于1110: 零起点学算法17——比较2个数大小的主要内容,如果未能解决你的问题,请参考以下文章

Problem C: 零起点学算法18——3个数比较大小

零起点学算法101——统计字母数字等个数

零起点学算法83——数组中删数

1146: 零起点学算法53——数组中插入一个数

17.零起点学算法12——求2个日期之间的天数

Problem F: 零起点学算法85——数组中插入一个数