我有一个涉及使用 Java 的 if else 语句的问题。我被困在如何在括号内放置两个条件,或者这是否可能?
到目前为止,这是我的代码:
public class rollerCoaster {
int age = 11;
int weight = 81;
if ( age <= 10 && weight < 10 ) {
System.out.println("This person needs to ride the black roller coaster.");
}
else if ( age <= 10 && weight >= 80 && <= 200 ) {
}
else {
}
//The new part is this:
else if ( condition_two ) {
}
};
慕的地6264312
叮当猫咪
相关分类