特に「gcd();」を呼び出すメインプログラムで、コードのコンパイルに問題があります。括弧内には何を入れればよいですか?ありがとうございました。
import java.util.Scanner;
public class gcd {
public static void main(String[] args) {
gcd();
}
public static int gcd(int a, int b) {
Scanner console = new Scanner(System.in);
System.out.println("Please enter the number 1 & 2: ");
a = console.nextInt();
b = console.nextInt();
if (b == 0)
return a;
else return (gcd (b, a % b));
}
}