教科書に次のような質問があります。
引数として2つの整数を取り、最初の整数が2番目の整数で均等に割り切れる場合(つまり、除算後に余りがない場合)に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;
};
}
}