慕粉3694462
2016-07-22 19:16
public static void main(String[] args) {
String today = "周末";
String sex = "男";
if(today.equals("周末" )){
if(sex.equals("女")){
System.out.println("进入女子组决赛");
} else{
System.out.println("进入男子组决赛");
} else{
System.out.println("淘汰");}}
}
}
System.out.println("淘汰");}} }}qu yi ge }
int score = 94;
String sex = "女";
if(score>80){
if(sex.equals("男")){
System.out.println("进入男子组决赛");
}else{
System.out.println("进入女子组决赛");
}
}else{
System.out.println("进入淘汰");
}
你是写作业是吧?和我写的对比下。还有你的预设条件是什么鬼? 周末,男?自己看不会糊涂吗?
public static void main(String[] args) {
String today = "周末";
String sex = "男";
if(today.equals("周末" ))
{
if(sex.equals("女")){
System.out.println("进入女子组决赛");
}
else{
System.out.println("进入男子组决赛");
}
}
else{
System.out.println("淘汰");}
}
第一次内个 我也错了 你if else 那里没大括号
package 测试;
public class gg {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String today = "周末";
String sex = "男";
if(today.equals("周末" )){
if(sex.equals("女"))
{
System.out.println("进入女子组决赛");
}
else
{
System.out.println("进入男子组决赛");
} }
else
{
System.out.println("淘汰");
}
}
}
把格式弄好 你仔细数一下你的大括号把
public static void main(String[] args) {
String today = "周末";
String sex = "男";
if(today.equals("周末" )){
if(sex.equals("女")){
System.out.println("进入女子组决赛");
}
else{
System.out.println("进入男子组决赛");
}
else{
System.out.println("淘汰");}
}
}
最后一个else应该在下一个大括号后面吧?
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题