1014: 三个数比大小
Time Limit: 1 Sec Memory Limit: 128 MB
Submit: 296 Solved: 151
原题链接
Description
输入三个数,按由大到小顺序打印出来。
Input
输入只有一行,包括3个整数。两个相邻的数字之间用一个空格分开。
Output
输出只有一行,包括3个整数。之间用一个空格分开。
Sample Input
3 8 2
Sample Output
8 3 2
HINT
Source
#include<iostream>
#include<algorithm>
using namespace std;
main()
{
int a[3];
cin>>a[0]>>a[1]>>a[2];
sort(a,a+3);
cout<<a[2]<<' '<<a[1]<<' '<<a[0]<<endl;
}