Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6014 王循 你会数数吗 C++ 通过 100 0 MS 264 KB 510 2020-08-23 18:52:00

Tests(2/2):


#include <bits/stdc++.h> using namespace std; int n; string str; int main() { cin>>n; for(int i=1;i<=n;i++) { cin>>str; for(int j=str.size();j>=0;j--) { if(str[j]=='1')cout<<'O'; if(str[j]=='2')cout<<'T'; if(str[j]=='3')cout<<'T'; if(str[j]=='4')cout<<'F'; if(str[j]=='5')cout<<'F'; if(str[j]=='6')cout<<'S'; if(str[j]=='7')cout<<'S'; if(str[j]=='8')cout<<'E'; if(str[j]=='9')cout<<'N'; if(str[j]=='0')cout<<'O'; } cout<<endl; } return 0; }


测评信息: