洛谷-P5715 【深基3.例8】三位数排序
洛谷-P5715 【深基3.例8】三位数排序
题目描述
给出三个整数 \(a,b,c(0\le a,b,c \le 100)\),要求把这三位整数从小到大排序。
输入格式
无
输出格式
无
输入输出样例
输入 #1
1 14 5
输出 #1
1 5 14
输入 #2
2 2 2
输出 #2
2 2 2
C++代码
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int n[3];
cin >> n[0] >> n[1] >> n[2];
sort(n, n+3);
cout << n[0] << ' ' << n[1] << ' ' << n[2] <<endl;
return 0;
}