Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
4142 吴泽宇 奇偶位互换 C++ 通过 100 0 MS 252 KB 263 2019-12-29 09:57:49

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int n; char c[51]; scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%s",c); int j=0; while(c[j]!='\0'){ if(j%2==0)cout<<c[j+1]; else cout<<c[j-1]; j++; } cout<<endl; } }


测评信息: