火星人是以 13 进制计数的:
地球人的 0 被火星人称为 tret。
地球人数字 1 到 12 的火星文分别为:jan, feb, mar, apr, may, jun, jly, aug, sep, oct, nov, dec。
火星人将进位以后的 12 个高位数字分别称为:tam, hel, maa, huh, tou, kes, hei, elo, syy, lok, mer, jou。
例如地球人的数字 29 翻译成火星文就是 hel mar;而火星文 elo nov 对应地球数字 115。为了方便交流,请你编写程序实现地球和火星数字之间的互译。
输入第一行给出一个正整数 N(<100),随后 N 行,每行给出一个 [0, 169) 区间内的数字 —— 或者是地球文,或者是火星文。
对应输入的每一行,在一行中输出翻译后的另一种语言的数字。
4
29
5
elo nov
tam
hel mar
may
115
13
思路:这题搞了半天只有大致思路不会写,将火星文低高位分别放入数组,先判断是火星文还是地球文,如果是地球文低位数字求余13,高位除以13得到火星文的索引,如果是火星文高位索引乘13加上低位索引得到地球文
附上别人的代码:
package test1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
public class PTA1044 {
public static void main(String[] args) throws IOException {
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
String []a={"tam","hel" , "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mer", "jou"};
String []b={"jan", "feb", "mar", "apr", "may", "jun", "jly", "aug","sep" ,"oct", "nov", "dec"};
int N=Integer.parseInt(in.readLine());
for (int i = 0; i < N; i++) {
String s = in.readLine();
int r = 0;
int a1,a2;
if (s.matches("[0-9]{1,}")) {
r=Integer.valueOf(s);
if (r==0) {
System.out.println("tret");
continue;
}
if (r<13) {
a1 = r%13;
System.out.println(b[a1-1]);
}
if (12<r&&r<169) {
a2 = r/13;
a1 = r-a2*13;
if (a1==0) {
System.out.println(a[a2-1]);
}else {
System.out.println(a[a2-1]+" "+a[a1-1]);
}
}
}else{
if (s.equals("tret")) {
System.out.println(0);
continue;
}
String[] split = s.split(" ");
if (split.length!=1) {
a1 = getIndex(b, split[1]);
a2 = getIndex(a, split[0]);
System.out.println(a2*13+a1);
}else {
a1 = getIndex(b, split[0]);
a2 = getIndex(a, split[0]);
if (a1!=0) {
System.out.println(a1);
}else {
System.out.println(a2*13);
}
}
}
}
}
public static int getIndex(String[] arr,String value){
for (int i = 0; i < arr.length; i++) {
if (arr[i].equals(value)) {
return i+1;
}
}
return 0;
}
}