7-2 比较大小
Posted edviv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7-2 比较大小相关的知识,希望对你有一定的参考价值。
题解:用 sort函数,位于 <algorithm>中。
#include <bits/stdc++.h> using namespace std; typedef long long ll; int a[5]; int main() { for(int i = 0; i < 3; i++) cin>>a[i]; sort(a,a+3); for(int i = 0; i < 3; i++) { if(i == 0) cout<<a[i]; else cout<<"->"<<a[i]; } cout<<‘ ‘; return 0; }
以上是关于7-2 比较大小的主要内容,如果未能解决你的问题,请参考以下文章