Java中Math.pow()的用法
1.問題描述
153是一個非常特殊的數,它等於它的每位數字的立方和,即153=1*1*1+5*5*5+3*3*3。程式設計求所有滿足這種條件的三位十進位制數。
輸出格式
按從小到大的順序輸出滿足條件的三位十進位制數,每個數佔一行。
-
public class Main {
-
static int a ,b ,c;
-
public static void function(){
-
for(int i =100;i<1000;i++){
-
a=i/100;
-
b=i%10;
-
c=(i/10)%10;
-
if(Math.pow(a,3) + (Math.pow(b,3)) + (Math.pow(c, 3))==(i)){
-
System.out.println(i);
-
}
-
/*
-
if(a*a*a+b*b*b+c*c*c==i){
-
//System.out.println(abc);
-
System.out.println(i);
-
*/}
-
}
-
public static void main(String [] args){
-
function();
-
}
-
}
(1)直接使用Math.pow(a,3)即可,即等於求a的3次方。Math方法直接是在Java.lang 包下的。