为什么最后还要+three?

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

慕丝8427111

2020-01-29 21:56

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

写回答 关注

2回答

  • 慕移动0026800
    2020-05-28 15:55:39

    表示字符串和变量的拼接

  • 慕后端2406745
    2020-02-17 20:58:28

    双引号里面的内容是直接原样输出的,后面的three代表变量three的值,加号是连接两个字符串用的。

    例如:System.out.println("three =one +two==>"+three);中引号内的three =one +two==>照样输出但是没有值,所以要添上+three将变量three的值也输出来。

    共 1 条回复 >

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

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

1165172 学习 · 17581 问题

查看课程

相似问题