清脆砖头

文章
6
资源
1
加入时间
2年10月17天

java中String,int,Integer,char、double类型转换

1、如何将字串 String 转换成整数 int?int i = Integer.valueOf(my_str).intValue();int i=Integer.parseInt(str);2、如何将字串 String 转换成Integer ?Integer integer=Integer.valueOf(str);3、如何将整数 int 转换成字串 String ?

HDU 2837 Calculation

DescriptionAssume that f(0) = 1 and 0^0=1. f(n) = (n%10)^f(n/10) for all n bigger than zero. Please calculate f(n)%m. (2 ≤ n , m ≤ 10^9, x^y means the y th power of x).InputThe first