这样通过了
public class HelloWorld {
public static void main(String[] args) {
int score = 94;
String sex = "女";
if (score>80){
if (sex=="女")
System.out.println("进入女子组决赛");
else
System.out.println("进入男子组决赛");
}
}
}
public class HelloWorld {
public static void main(String[] args) {
int score = 94;
String sex = "女";
if (score>80){
if (sex=="女")
System.out.println("进入女子组决赛");
else
System.out.println("进入男子组决赛");
}
}
}
2018-05-17
举报