我无法编译我的代码,特别是在我调用“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));
}
}