設計說明:
1. 畫面顯示[Inout:],並於下方要求輸入二個整數 m、n,並以空格鍵分隔。
2. 並用一個類別方法及 while loop 計算 m 與 n 的最大公因數,直到輸入m=999為止,執行結果如範例圖。
參考程式碼:
TQC+ Java 試題總整理
- import java.util.*;
- public class JPA307{
- public static void main (String argv[]) {
- int num1, num2;
- System.out.println("Input:");
- num1=new Scanner(System.in).nextInt();
- while (num1!=999) {
- num2=new Scanner(System.in).nextInt();
- System.out.println(gcd(num1,num2));
- System.out.println("Input:");
- num1=new Scanner(System.in).nextInt();
- }
- }
- static int gcd (int m, int n) {
- int result;
- while (n != 0){
- result = m % n;
- m = n;
- n = result;
- }
- return m;
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com