Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136080 毛靖平 打印每一趟冒泡排序 C++ Wrong Answer 1 MS 264 KB 519 2025-11-09 14:03:37

Tests(0/3):


Code:

#include<bits/stdc++.h> using namespace std; int a[10005]; int main(){ int n; cin>>n; int z=0; for(int i=1;i<=n;i++){ cin>>a[i]; } for(int i=1;i<n;i++){ z=0; for(int j=1;j<n;j++){ if(a[j]>a[j+1]){ swap(a[j],a[j+1]); } else{ z=1; } for(int i=1;i<=n;i++){ cout<<a[i]<<" "; } cout<<endl; } if(z=1){ break; } } for(int i=1;i<=n;i++){ cout<<a[i]<<" "; } return 0; }


Run Info:

------Input------
5 5 4 3 2 1
------Answer-----
4 3 2 1 5 3 2 1 4 5 2 1 3 4 5 1 2 3 4 5
------Your output-----
4 5 3 2 1 4 3 5 2 1 4 3 2 5 1 4 3 2 1 5 4 3 2 1 5