蓝桥杯 ALGO-97 排序(水、三个数排序)
【思路】:三个数排序。最保险的方法用sort函数,其他的就是基本知识了。注意顺序就行。
【AC代码】:
#include <iostream> #include <algorithm> #include <iomanip> #include <cstdio> #include <cstring> using namespace std; void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; } int main() { //freopen("in.txt", "r", stdin); int a = 0, b = 0, c = 0; //input cin >> a >> b >> c; //exchange if (b > a) swap(a, b); if (c > b) swap(b, c); if (b > a) swap(a, b); //output cout << a << " " << b << " " << c; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。