Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6016 | asdfghjkl123456789 | 你会数数吗 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 829 | 2020-08-23 18:52:46 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=0;i<n;i++){ char a[10]={'a';} cin>>a; for(int j=9;j>=0;j--){ if(a[j]=='0'){ cout<<'O'; }else{ if(a[j]=='1'){ cout<<'O'; }else{ if(a[j]=='2'){ cout<<'T'; }else{ if(a[j]=='3'){ cout<<'T'; }else{ if(a[j]=='4'){ cout<<'F'; }else{ if(a[j]=='5'){ cout<<'F'; }else{ if(a[j]=='6'){ cout<<'S'; }else{ if(a[j]=='7'){ cout<<'S'; }else{ if(a[j]=='8'){ cout<<'E'; }else{ if(a[j]=='9'){ cout<<'N'; }else{ } } } } } } } } } } } cout<<endl; } return 0; }