本文主要是介绍输入不确定个数的整数,按从小到大顺序输出,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
直接用sort排序
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{int n=0;int a[105];cin>>a[0];while(getchar()!='\n')cin>>a[++n];sort(a,a+n+1);for(int i=0;i<=n;++i)cout<<a[i]<<" ";cout<<endl;return 0;
}
这篇关于输入不确定个数的整数,按从小到大顺序输出的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!