我正在尝试编写一个程序,该程序从用户那里获取一个整数值(n),检查它是否大于 0 且小于 30。如果是这种情况,它会调用我的 catalan numbers 方法并替换 n。如果输入number 小于 0 或大于 30 它应该抛出和 IllegalArgumentException。
加泰罗尼亚数字方法似乎没有问题,但是当我尝试调用加泰罗尼亚数字方法并在其中输入“n”时会出现问题。所有的问题都局限于 switch 语句,它不会接受函数 'n.equals("quit")、(n>30)、(n < 0),它不会调用我的 catalan numbers 方法。
到目前为止,这是我的代码:
public class Exercise_3 {
public static long catalan(int n) throws IllegalArgumentException {
int res = 0;
// Base case
if (n <=1) {
return 1;
}
for (int i = 0; i < n; i++) {
res += catalan(i) * catalan( n - i - 1);
}
return res;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
Exercise_3 cn = new Exercise_3();
System.out.println("Please enter an integer greater than 0 and less than 30 or type 'quit' to exit.");
boolean n = scan.nextBoolean(); {
switch(n) {
if (n.equals("quit")) {
break;
}
else
case (n > 30):
throw IllegalArgumentException;
break;
case (n < 0):
throw IllegalArgumentException;
break;
case (0 < n <= 30):
int i = cn(n);
break;
}
System.out.println(i);
}
}
}
如果有人对此有任何解决方案,我将不胜感激。