输入 0xAA
输出 170
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
String str = sc.nextLine();
String s = str.substring(2);
int a = Integer.valueOf(s,16);
System.out.println(a);
}
}
}
其中
static Integer valueOf(String s, int radix)
s -- Integer 对象的字符串。
radix --在解析字符串 s 时使用的进制数,用于指定使用的进制数。
Integer valueOf(String s, int radix): 返回一个 Integer 对象,该对象中保存了用第二个参数提供的基数进行解析时从指定的 String 中提取的值。