提交时间:2024-08-19 17:21:43
运行 ID: 167764
#include <bits/stdc++.h> using namespace std; long long a[114514]; int main() { int n; cin >> n; for(int i = 1; i <= n; i ++) cin >> a[i]; for(int i = 1; i <= n; i ++) for(int j = i + 1; j <= n; j ++) if(a[i] > a[j]) swap(a[i],a[j]); for(int i = 1; i <= n; i ++) printf("%lld ",a[i]); return 0; }