问答详情
源自:3-3 Java中的赋值运算符

哪里出错了啊

public class HelloWorld{
    public static void main(String[] args) {
     int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        three=one+two;

        System.out.println("three=one+two==>"+there); 
   
 }
}

提问者:Beaten丶 2015-11-25 14:42

个回答

  • Perona
    2015-11-25 15:06:06
    已采纳

    System.out.println("three=one+two==>"+there);
    System.out.println("three=one+two==>"+three);

    这2行有什么区别?发现了没,你把three敲成了there。上面并没有定义there呀。

  • 想要飞的鱼儿
    2015-11-29 21:23:14

    哈哈,代码思路对着呢,就视拼写出错了

  • 天启之魂
    2015-11-26 08:48:24

    考眼力呢。。。自己下个eclipse 在本地测试吧 这些问题都可以避免了

  • java2018
    2015-11-25 19:59:13

    英文不过关,哈哈