这个为什么用char不可以
public class one{
public static void main(String[] args) {
int score = 95;
char sex = '女';
if (score>80){
if(sex equals("女")){
System.out.println("进入女子组决赛");
}
else{
System.out.println("进入男子组决赛");
}
}
}
}
问题在哪?