錯誤,我運(yùn)行不出來
public class HelloWorld {
??? public static void main(String[] args) {
??int score = 94;
??String seX=‘女’
??????? if(score>80){
??????????? if(sex=='男'){
??????????? System.out.println("進(jìn)入男子組決賽");
??????????? }else{
??????????? System.out.println("進(jìn)入女子組決賽");
??????????? }
??????? }else{
??????? System.out.println("淘汰");
??????? }
????????
??? }
}
???????
這個我運(yùn)行不出來,提示
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)
2015-11-29
你寫的是java?
public class HelloWorld {
???? public static void main(String[] args) {
?? int score = 94;
?? String seX="女";
???????? if(score>80){
???????????? if(seX=="男"){//相等最好用seX.equals("男")
???????????? System.out.println("進(jìn)入男子組決賽");
???????????? }else{
???????????? System.out.println("進(jìn)入女子組決賽");
???????????? }
???????? }else{
???????? System.out.println("淘汰");
???????? }
????????
???? }
?}
2015-12-02
現(xiàn)在回頭來看,當(dāng)時真的太年輕,謝謝各位好心人啊 。
2015-11-30
public class HelloWorld {
? ? public static void main(String[] args) {
? ? ? ? int score = 94;
? ? ? ? String sex = "女";
? ? ? ? if(score>80){
? ? ? ? ? ? if(sex.equals("女")){
? ? ? ? ? ? ? ? System.out.println("進(jìn)入女子組決賽");
? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? System.out.println("進(jìn)入男子組決賽");
? ? ? ? ? ? }
? ? ? ? }?
? }
}
2015-11-30
public class HelloWorld {
? ? ? ?public static void main(String[] args) {
? ? ? ? ? ? int score = 94;
? ? ? ? ? ? String sex = "女";
? ? ? ? ? ? if(score>80){
? ? ? ? ? ? ? ? ? ?if(sex squals("女")){
? ? ? ? ? ? ? ? ? ? ? ? ?System.out.println("進(jìn)入女子組決賽");
? ? ? ? ? ? ? ? ? ?}else{
? ? ? ? ? ? ? ? ? ? ? ? ?System.out.println("進(jìn)入男子組決賽");
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? }?
? ? ? ?}
}
2015-11-29
X我已經(jīng)改了