[河南省ACM省赛-第四届] 序号互换 (nyoj 303)

时间:2024-01-09 17:06:20

相似与27进制的转换

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cstdlib>
#include<algorithm>
#include<stack>
using namespace std;

int main(){
    int t;
    string s;
    cin>>t;
    while(t--)
    {
        cin>>s;
        ] >= 'A') {
            ;
            int len = s.length();
            ; i<len; i++){
                res = res*+s[i]-;
            }
            cout<<res<<endl;
        } else {
            string res;
            int n = atoi(s.c_str());
            while(n){
                 == ){
                    res += 'Z';
                    n -= ;
                }
                else
                    res += n%+;
                n /= ;
            }
            reverse(res.begin(), res.end());
            cout<<res<<endl;
        }
    }
    ;
}