import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
while(input.hasNextInt()){
int num = input.nextInt();
String str4 = Integer.toString(num,17);
System.out.println(str4 );
}
input.close();
}
}
来源:CSDN
作者:马心宇
链接:https://blog.csdn.net/weixin_44438770/article/details/103877930