这个是不是答案
int score = 99;
String sex = "女";
if (score>80){
if (sex.equals("女"))
System.out.print("进入女子组决赛");
else
System.out.print("进入男子组决赛");
}
else{
System.out.print("淘汰出局");
}
int score = 99;
String sex = "女";
if (score>80){
if (sex.equals("女"))
System.out.print("进入女子组决赛");
else
System.out.print("进入男子组决赛");
}
else{
System.out.print("淘汰出局");
}
2019-03-28
举报