1 条题解
-
0Infinity_ LV 8 @ 2024-08-28 13:13:45
#include<stdio.h> #include<algorithm> using namespace std; int a[110]; int main(){ int m, n; scanf("%d%d", &m, &n); for(int i = 1; i <= m; i++){ for(int j = 1; j <= n; j++)scanf("%d", &a[j]); sort(a+1, a+n+1); for(int j = 1; j <= n; j++)printf("%6d", a[j]); printf("\n"); } return 0; }
- 1
信息
- 难度
- 8
- 分类
- (无)
- 标签
- 递交数
- 597
- 已通过
- 84
- 通过率
- 14%
- 被复制
- 12
- 上传者