Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3907 未知用户 奇偶位互换 C++ 通过 100 1 MS 252 KB 272 2019-12-27 19:00:02

Tests(1/1):


#include<iostream> using namespace std; int main(){ int n; char c[100]; 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; } return 0; }


测评信息: