- 问答
为什么报错
- 2024-1-18 21:44:59 @
#include <bits/stdc++.h>
using namespace std;
int a[114514];
int main()
{
int n;
cin >> n;
for(int i = 0;i < n;i++)
cin >> a[i];
int len = n;
int temp;
int j;
for(int i = 1;i < n;i++)
{
if(a[i] < a[i - 1])
{
temp = a[i];
for(j = i - 1;j >= 0 &&temp <a[j];j--)
{
a[j + 1] = a[j];
}
a[j + 1] = temp;
}
for(int j = 0;j < n;i++)
{
cout << a[j] << ' ';
}
puts("");
}
return 0;
}
1 comments
-
Csvoner LV 3 SU @ 2024-1-18 21:59:01
没输出第一行
- 1