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

l need help!!

为什么运行的结果是这个,我在eclipse运行的结果就是三十。这个程序是怎么运行处得到这个结果的?

正在回答

6 回答

就是这个,我自己用eclipse编写一遍,但是得到的和这上面给的答案不一样

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

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);
        }

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

刚在记事本打的,结果就是2

public class a{

    public static void main(String[] args){

        int s=(11+3*8)/4%3;

        System.out.println(s);

    }

}


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

没有代码  也没法就没办法讲呢

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

第一步:计算3*8,结果为24;第二步:计算11+3*8,结果为35;第三步:计算(11 + 3 * 8) / 4,结果为8;第四步:计算(11 + 3 * 8) / 4 % 3,结果为2

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

代码贴出来!

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

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165244    人
  • 解答问题       17581    个

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

进入课程

l need help!!

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