一直显示错误

来源:3-3 Java中的赋值运算符

weixin_慕码人7496725

2018-11-15 20:01

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回答

  • 拥抱黑夜的白天
    2018-11-19 17:12:38

    你的代码没问题的。可能是网页有有问题,我之前也出现了你的这个问题,你代码是没错的,要么重新打开网页或者清一下缓存,应该会好的。

  • 二师兄我来了
    2018-11-17 19:27:52

    我把代码复制去看了下,是没问题的

  • 时倾Y
    2018-11-17 19:08:34

    可以输出成功啊

  • qq_慕仰9275812
    2018-11-15 20:34:58

    没错啊,对的

Java入门第一季(IDEA工具)升级版

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

1165172 学习 · 17581 问题

查看课程

相似问题