| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 129876 | 林嘉乐 | 打印每一趟冒泡排序 | C++ | Accepted | 2 MS | 280 KB | 380 | 2025-09-06 17:15:28 |
#include<bits/stdc++.h> using namespace std; int main() { int a[2001]={},n,t; cin>>n; for(int i=0;i<n;i++){ cin>>a[i]; } for(int i=0;i<n-1;i++){ for(int j=0;j<n-1-i;j++){ if(a[j]>a[j+1]){ t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } for(int i=0;i<n-1;i++){ cout<<a[i]<<" "; } cout<<a[n-1]<<endl; } return 0; }