我不明白爲什麼我的if-else語句不能正常工作。這是我到目前爲止有:需要一個程序,要求用戶輸入2個整數,檢查是否第二個數字是第一個數字的倍數
import java.util.Scanner;
public class multiple {
public static void main (String[] args){
Scanner input = new Scanner (System.in);
int x = 4;
int y = 3;
int multiple = y % x;
while (multiple != 0){
System.out.println("Enter two integers: ");
x = input.nextInt();
y = input.nextInt();
if (multiple != 0)
System.out.println("Oops, sorry! The second integer is NOT a multiple of the first integer.");
else
System.out.println("Good Job! " + y + " is a multiple of " + x + "!");
}
}
}
然後我不會失去我的while語句嗎?我需要它繼續重複,直到用戶輸入2個整數倍數 – Mel0927
謝謝!有效! – Mel0927