提交时间:2020-08-23 18:53:14

运行 ID: 6017

#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; }