我在我的教科書的問題,說:Java的布爾方法
寫方法多采用兩個整數作爲參數,並返回true,如果第一個整數整除 均勻地通過第二個(即劃分後沒有剩餘);否則,方法應該 返回false。將此方法合併到允許用戶輸入值以測試 方法的應用程序中。
,我寫了這個代碼,但它不工作:
public class project1 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int a, b;
System.out.println("enter the first number");
a = input.nextInt();
System.out.println("enter the first number");
b = input.nextInt();
}
public static boolean multiple(int g, int c) {
int g, c;
if (g % c = 0) {
return true;
} else {
return false;
};
}
}
串「不工作」是不是在Java中內置的錯誤消息。 – 2013-01-23 07:13:18
你的代碼甚至不會編譯。 – Maroun
@assylias:'==='在javascript中有效,不在java中,我認爲你有一個錯字:) –