本帖最後由 葉桔良 於 2022-12-16 21:32 編輯
題目說明:
請將檔案另存成JPA03.java,並編譯為JPA03.class
設計說明:
1.請設計一程式,持續輸入兩整個數m、n,m與n中間以空格鍵分隔,並以一個類別方法及while loop計算m的n次方,直到輸入m=999為止。
2.顯示如執行結果參考畫面。
100的7次方屬於溢位(overflow)- import java.util.*;
- public class JPD03 {
- public static void main (String argv[]){
- int num1, num2;
- Scanner input = new Scanner(System.in);
- System.out.println("Input:");
- num1 = input.nextInt();
- while (num1 != 999) {
- num2 = input.nextInt();
- System.out.println(powerOf(num1, num2));
- ...
- }
- }
- static int powerOf (int m, int n) {
- ...
- }
- }
複製代碼 |