Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6017 | asdfghjkl123456789 | 你会数数吗 | C++ | 通过 | 100 | 0 MS | 256 KB | 806 | 2020-08-23 18:53:14 |
#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'; } } } } } } } } } } } cout<<endl; } return 0; }