| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 124216 | 范恒恺 | 数组中元素交换 | C++ | Wrong Answer | 1 MS | 264 KB | 278 | 2025-07-11 10:52:19 |
#include<bits/stdc++.h> using namespace std; int a[101]; int b[101]; int main() { int n; cin>>n; for(int i=0; i<n; i++) { cin>>a[i]; } for(int i=1;i<n;i+=2){ int k=a[i]; a[i]=a[i+1]; a[i+1]=k; } for(int i=1;i<=n;i++){ cout<<a[i]<<" "; } }
------Input------
1 49
------Answer-----
49
------Your output-----
0