题目1202:排序------注意每个数字的后面都有空格
Posted 贱人郭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目1202:排序------注意每个数字的后面都有空格相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<algorithm> using namespace std; int a[101]; int main() { int n; while(scanf("%d",&n)!=EOF) { int i; for(i=0;i<n;i++) scanf("%d",&a[i]); sort(a,a+n); for(i=0;i<n;i++) printf("%d ",a[i]); printf("\n"); } return 0; }
以上是关于题目1202:排序------注意每个数字的后面都有空格的主要内容,如果未能解决你的问题,请参考以下文章