从网上找到一份编程练习题,我决定将里面的题目全都做一遍。
/*
题目:取一个整数a从右端开始的4~7位。
*/
/*
利用 %和/的特性。
num % Math.pow(10,7) --> 取后面七位
/ Math.pow(10,3) --> 舍去后面3位
*/
class FenGeZhengShu {
public static void main(String[] args) {
long num=987654321L; //--> 可以看出后 4~7 位为7654
//思路一
int result=Func(num);
System.out.println("结果为:"+result);
}
public static int Func(long num){
return (int)(num % Math.pow(10,7) / Math.pow(10,3));
}
}
/*
输出结果
结果为:7654
*/
|
|