本帖最後由 李泳霖 於 2022-12-3 13:34 編輯
TQC104
請使用 Math.pow() 與 Math.sqrt() 方法撰寫本程式
TQC202
(1)請設計一程式,使用者可輸入兩個整數,並且比較兩個整數大小
(2)程式執行時,畫面顯示【Input:】,請使用者輸入兩組整數,各組整數分別輸入兩個數字,數字中間以空格鍵間隔。
(3)重複執行兩次,依輸入的兩個整數比較大小,顯示如執行結果參考畫面。
- import java.util.*;
- class JPD02 {
- static Scanner keyboard = new Scanner(System.in);
- public static void main(String[] args) {
- test();
- test();
- }
-
- public static void test() {
- ...
- }
- }
複製代碼 TQC306
題目說明:
請將檔案另存成JPA03.java,並編譯為JPA03.class
設計說明:
1.請設計一程式,持續輸入兩整個數m、n,m與n中間以空格鍵分隔,並以一個類別方法及while loop計算m的n次方,直到輸入m=999為止。
2.顯示如執行結果參考畫面。
- import java.util.*;
- public class JPA03 {
- 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) {
- ...
- }
- }
複製代碼 TQC506
1.題目說明:
請將檔案另存成JPA05.java,並編譯為JPA05.class
2.設計說明:
(1)設陣列A的維度為4*2*3,試在程式碼裡宣告此一陣列,並在宣告同時設定初值,然後計算陣列A內的所有元素總和(SUM)。
(2)int A[][][]={{{1,2,3},{4,5,6}},
{{7,8,9},{10,11,12}},
{{13,14,15},{16,17,18}},
{{19,20,21},{22,23,24}}};
- public class JPD05 {
- public static void main(String[] argv) {
- int sum =0;
- int A[][][] = {{{1,2,3},{4,5,6}},
- {{7,8,9},{10,11,12}},
- {{13,14,15},{16,17,18}},
- {{19,20,21},{22,23,24}}};
-
-
-
- System.out.printf("sum = %d\n", sum);
- }
- }
複製代碼 TQC508
1.題目說明:
請將檔案另存成JPA05.java,並編譯為JPA05.class
2.設計說明:
(1)請使用泡泡排序法(Bubble Sort)撰寫程式。
(2)程式內有一資料陣列{2,4,3,5,7,6,9,1}。
(3)請輸出泡泡排序法的比對過程。
(4)顯示如執行結果參考畫面。
- public class JPD05 {
- public static void main(String[] argv) {
- int[] data = {2, 4, 3, 5, 7, 6, 9, 1}; // 為排序的資料
- ...
- }
- }
複製代碼 |