1110: 零起点学算法17——比较2个数大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1110: 零起点学算法17——比较2个数大小相关的知识,希望对你有一定的参考价值。
1110: 零起点学算法17——比较2个数大小
Time Limit: 1 Sec Memory Limit: 64 MB 64bit IO Format: %lldSubmitted: 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个数大小的主要内容,如果未能解决你的问题,请参考以下文章