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

正在回答

5 回答

你输出一段代码 做的运算 输出算式 就要在后面加一个加号 才能输出算式结果 +three中three是计算运行后的three 是你想得到的

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

这个代码输出了两段内容,第一段“”,第二段是three的值,加号表示连接。第一段为空值,加不加都可以的。

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

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

        three+=one;

        System.out.println(""+three);

        three-=one;

        System.out.println(""+three);

        three*=one;

        System.out.println(""+three);

        three/=one;

        System.out.println(""+three);

        three%=one;

        System.out.println(""+three);

}

}


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

代表两字符串的链接,你前面加的应该都是字符串类型的吧

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

能给出代码吗???

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

举报

0/150
提交
取消

为什么最后是+three啊

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