このコード:
class Foo {
public static void calculator(double BP, double Hr ) {
if (BP <8) || (Hr>60) {
System.out.println("Not possible");
}
}
}
このエラーが発生します:
line no:3: illegal start of expression
if (BP <8)|| (Hr>60)
^
if
「不可」というメッセージを出す条件を追加したい。