Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6020 | 季洁 | 你会数数吗 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 351 | 2020-08-23 18:55:30 |
#include<bits/stdc++.h> using namespace std; int main(){ int b,l,t; cin>>t; while(t){ cin>>b; while(b){ l=b%10; if(l==0||l==1) cout<<'O'; if(l==2||l==3) cout<<'T'; if(l==4||l==5) cout<<'F'; if(l==6||l==7) cout<<'S'; if(l==8) cout<<'E'; else cout<<'N'; b/=10; } cout<<endl; t--; } return 0; }