求大神解答,怎么错的?

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

qq_慕娘8208356

2019-03-20 23:54

public class HelloWorld{
    public static void main(String[] args) {
     int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        there=one+two;
        System.out.println("there=one+two==>"+there);
        there+=one;
        System.out.println("there+=one==>"+there);
        there-=one;
        System.out.println("there-=one==>"+there);
        there*=one;
        System.out.println("there*=one==>"+there);
        there/=one;
        System.out.println("there/=one==>"+there);
        there%=one;
        System.out.println("there%=one==>"+there);
  
 }
}

写回答 关注

2回答

  • WC自动机
    2019-03-21 18:33:22

    前面定义的three到后面就写成了there。

  • hroks
    2019-03-21 13:53:27

    three

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

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

1165172 学习 · 17581 问题

查看课程

相似问题