标签:
火星人是以13进制计数的:
例如地球人的数字“29”翻译成火星文就是“hel mar”;而火星文“elo nov”对应地球数字“115”。为了方便交流,请你编写程序实现地球和火星数字之间的互译。
输入格式:
输入第一行给出一个正整数N(<100),随后N行,每行给出一个[0, 169)区间内的数字 —— 或者是地球文,或者是火星文。
输出格式:
对应输入的每一行,在一行中输出翻译后的另一种语言的数字。
输入样例:4 29 5 elo nov tam输出样例:
hel mar may 115 13
具体详解请戳:http://blog.csdn.net/plank_root/article/details/51383098
1 #include<iostream> 2 #include<cstdio> 3 #include<string> 4 using namespace std; 5 int main() 6 { 7 int N; 8 cin>>N; 9 string mess; 10 string three=""; 11 string fire[13]= {"tret", "jan", "feb", "mar", "apr", "may", "jun", "jly", "aug", "sep", "oct", "nov", "dec"}; 12 string jinzhi[13]= {"tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mer", "jou"}; 13 int len,number=0; 14 getchar(); //使用getline时他会将第一次cin>>N的时候回车记录在内,从而少一次循环所以用getchar()捕捉那个回车 15 for(int i=0; i<N; i++) 16 { 17 getline(cin,mess); 18 if(mess[0]>=‘0‘&&mess[0]<=‘9‘) //如果是数字 19 { 20 for(int j=0; j<mess.size(); j++) 21 number=number*10+mess[j]-‘0‘; 22 if(number<13)//直接输出对应数字 23 cout<<fire[number]<<endl; 24 else //如果大于等于13并且可以被13整除,则根据样例是不用输出0(tret)的 25 { 26 if(number%13==0) cout<<jinzhi[number/13-1]<<endl; 27 else cout<<jinzhi[number/13-1]<<" "<<fire[number%13]<<endl;//否则的话要输入 28 } 29 } 30 else //如果是火星文 31 { 32 for(int k=0; k<mess.size(); k=k+4) 33 { 34 three=three+mess[k]+mess[k+1]+mess[k+2];//读取每个火星文 35 for(int l=0; l<13; l++) 36 { 37 if(three==fire[l])//如果火星文在fire数组里,那么它是13进制中的个位数,只需加上坐标 38 number=number+l; 39 if(three==jinzhi[l])//如果在jinzhi数组中,则每次要乘以13 40 number=number+(l+1)*13; 41 } 42 three=""; 43 } 44 cout<<number<<endl; 45 } 46 number=0; 47 } 48 return 0; 49 }
标签:
原文地址:http://www.cnblogs.com/zhien-aa/p/5671051.html