慕沐8723569
2016-05-20 16:31
public class working {
public static void main(String[] args){
int score=79;
String sex="女";
if(score>80){
if(sex.equals("男"));{ System.out.println("进入男子决赛");
} else {System.out.println("进入女子决赛");
}
}else{System.out.println("淘汰");}
}
}我用eclipse显示,第“进入女子决赛”那一行中的else错误 显示标记“else”上有语法错误,有谁能告诉我该怎么改
if后面谜之分号...
package test;
public class working
{
public static void main(String[] args)
{
int score=79;
String sex="女";
if(score>80)
{
if(sex.equals("男"))
{
System.out.println("进入男子决赛");
}
else
{
System.out.println("进入女子决赛");
}
}else{System.out.println("淘汰");}
}
}
if(sex.equals("男"))后面的;删掉
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题