问答详情
源自:3-7 Java中的条件运算符

为什么score>60不能加括号

如题,score>60是对的(score>60)就不对

提问者:熊Bear 2017-10-27 13:18

个回答

  • 慕沐7660940
    2017-10-27 16:06:30

    //img1.mukewang.com/59f2e8f600011ced05170671.jpg并没有错啊

  • 苏航SH
    2017-10-27 14:30:13

    public class HelloWorld{

        public static void main(String[] args) {

    int score=8;

    String mark =( score>60 )?"及格":"不及格";

    System.out.println("考试成绩如何:"+mark);

    }

    }

    那个位置的括号加不加都可以运行的,我猜你是括号弄错了,打成中文符号了吧。

    注意区分 ()和( )