蓝桥杯基础练习题十进制转化为十六进制
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner re = new Scanner(System.in);
int a = re.nextInt();
String string = Integer.toHexString(a);
//转换后的结果是小写,toUpperCase()可以将字符串中小写字符转为大写
System.out.println(string.toUpperCase());
}
}