嵌套if语句
public static void main(String[] args) {
int score = 94;
String sex = "女";
if(score>80){
if(sex=="女"){
System.out.println("进入女子组决赛");}
else{
System.out.println("进入男子组决赛");
}
}
else{
System.out.println("没有进入决赛");
}
if(sex=="女") 这个里面可以使=吗?为什么是==?