错误,我运行不出来
public class HelloWorld {
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("淘汰");
}
}
}
这个我运行不出来,提示
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
Syntax error on tokens, delete these tokens
Type mismatch: cannot convert from boolean to String
Syntax error, insert ";" to complete LocalVariableDeclarationStatement
sex cannot be resolved to a variable
Syntax error on token "else", delete this token
at com.imooc.HelloWorld.main(HelloWorld.java:4)