这段代码:
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
应该给出消息“不可能”。