Java 菜鳥教程

Java 流程控制

Java 數(shù)組

Java 面向?qū)ο?I)

Java 面向?qū)ο?II)

Java 面向?qū)ο?III)

Java 異常處理

Java 列表(List)

Java Queue(隊列)

Java Map集合

Java Set集合

Java 輸入輸出(I/O)

Java Reader/Writer

Java 其他主題

Java程序來計算數(shù)字的冪

Java 實例大全

在此程序中,您將學(xué)習(xí)使用和不使用pow()函數(shù)來計算數(shù)字的冪。

示例1:使用while循環(huán)計算數(shù)字的冪

public class Power {

    public static void main(String[] args) {

        int base = 3, exponent = 4;

        long result = 1;

        while (exponent != 0)
        {
            result *= base;
            --exponent;
        }

        System.out.println("Answer = " + result);
    }
}

運行該程序時,輸出為:

Answer = 81

在此程序中,分別為base和exponent分配了值3和4。

使用while循環(huán),我們將result乘以base,直到指數(shù)(exponent)變?yōu)榱銥橹埂?/p>

在這種情況下,我們result乘以基數(shù)總共4次,因此 result= 1 * 3 * 3 * 3 * 3 = 81。

示例2:使用for循環(huán)計算數(shù)字的冪

public class Power {

    public static void main(String[] args) {

        int base = 3, exponent = 4;

        long result = 1;

        for (;exponent != 0; --exponent)
        {
            result *= base;
        }

        System.out.println("Answer = " + result);
    }
}

運行該程序時,輸出為:

Answer = 81

在這里,我們使用了for循環(huán),而不是使用while循環(huán)。

每次迭代后,exponent減1,然后result乘以base,exponent次。

如果您的指數(shù)為負,則以上兩個程序均無效。為此,您需要在Java標準庫中使用pow()函數(shù)。

示例3:使用pow()函數(shù)計算數(shù)字的冪

public class Power {

    public static void main(String[] args) {

        int base = 3, exponent = -4;
        double result = Math.pow(base, exponent);

        System.out.println("Answer = " + result);
    }
}

運行該程序時,輸出為:

Answer = 0.012345679012345678

在此程序中,我們使用Java的Math.pow()函數(shù)來計算給定基數(shù)的冪。

Java 實例大全

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清