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

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

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

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

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

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

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

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

举报

0/150
提交
取消

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

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