Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140926 李折曦 19从小到大进行排序 C++ Compile Error 0 MS 0 KB 343 2025-12-20 14:31:55

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int n; int a[1000]; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; } for(int j=1;j<n;i++){ for(int i = 1;i<n;i++){ if(a[i]>a[i+1]){ int temp=a[i]; a[i]=a[i+1]; a[i+1]=temp; } } } for(int i = 1;i<=n;i++){ cout<<a[i]<<" "; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:10:18: error: 'i' was not declared in this scope
  for(int j=1;j