Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
6009 | 季洁 | 你会数数吗 | C++ | Compile Error | 0 | 0 MS | 0 KB | 337 | 2020-08-23 18:47:10 |
#include<bit/stdc++.h> using namespace std; int n,b,l; int main(){ cin>>n; while(n){ 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; n--; } }