Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6079 | 张志鹏 | 你会数数吗 | C++ | 通过 | 100 | 0 MS | 260 KB | 411 | 2020-08-23 19:27:00 |
#include<bits/stdc++.h> using namespace std; int main(){ int num,shu,cou; cin>>num; while(num){ cin>>shu; while(shu){ cou=shu%10; if(cou==0||cou==1) cout<<'O'; else if(cou==2||cou==3) cout<<'T'; else if(cou==4||cou==5) cout<<'F'; else if(cou==6||cou==7) cout<<'S'; else if(cou==8) cout<<'E'; else cout<<'N'; shu/=10; } cout<<endl; num--; } return 0; }