我在用if的时候,用score=90的时候,else不起作用了
我在用if的时候,用score=90的时候,else不起作用了,为啥啊
我在用if的时候,用score=90的时候,else不起作用了,为啥啊
2015-09-10
package com.HelloWorld;
public class HelloWorld {
public static void main(String[] args) {
// TODO Auto-generated method stub
/* 男子组决赛成绩情况
*
*/
int a=80;
String b="男";
if(b.equals("男")){
if(a>=90){
System.out.println("进入男子组决赛成绩:优秀");
}else if(a>=75){
System.out.println("进入男子组决赛成绩:良好");
}else if(a>=60){
System.out.println("进入男子组决赛成绩:及格");
}else if(a<=60){
System.out.println("进入男子组决赛成绩:不及格");
}
}
}
}
举报