为了账号安全,请及时绑定邮箱和手机立即绑定

请大神指点一下,下面这代码哪里出错了???

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==>"+three);
        three+=one;
        System.out.println("three+=one==>"+three);
        three-=one;
        System.out.println("three-=one==>"+three);
        three*=one;
        System.out.println("three*=one==>"+three);
        three/=one;
        System.out.println("three/=one==>"+three);
        three%=one;
        System.out.println("three%=one==>"+three);
    }
}

正在回答

4 回答

我用的eclipse环境,你用的什么环境呢?

0 回复 有任何疑惑可以回复我~
#1

菲尔活该 提问者

代码应该没有什么问题吧,我在eclipse里也可以运行~
2015-11-30 回复 有任何疑惑可以回复我~

可以是你的IDE没有配置好,你可以试试最简单的代码能不能跑

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请大神指点一下,下面这代码哪里出错了???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信