为什么在括号里的每局都要加three,引号里的代表着什么意思

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

qq_慕娘6273624

2019-04-19 22:14

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



写回答 关注

2回答

  • qq_慕尼黑9326023
    2019-05-23 11:11:23

    双引号引起来的是字符,直接显示的部分,加号是 把 three 和字符 分隔开  如果()里面没有字符 就不用加+号

  • 慕运维5055354
    2019-05-07 20:57:01

    引号里写的东西就是你想打出来的东西,你写什么进去,就会原封不动打出来。以System.out.println("three=one+two==>"+three);这一句为例子,你写“three=one+two==>”

    运行出来就是three=one+two==>;+表示加上,+three,意思是除了要print出前面引号内的内容,还要print three所代表的值,也就是30。 这一整句话效果就是print出three=one+two==>30,然后换行

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

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

1165172 学习 · 17581 问题

查看课程

相似问题