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

能帮我看一下哪里出问题吗

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.prinln("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 );

        


正在回答

4 回答

three /= one;  这个结果不是int类型了,而是double类型了。

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

+=  那块 println 少一个t 

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

慕先生5076842

细节?
2020-09-22 回复 有任何疑惑可以回复我~
#2

慕姐4377782

优秀 66
2021-05-19 回复 有任何疑惑可以回复我~

把 one two three 定义为double类型吗

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

慕先生5076842

double是用于价格和平均数
2020-09-22 回复 有任何疑惑可以回复我~

那应该怎么修改呢

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

举报

0/150
提交
取消

能帮我看一下哪里出问题吗

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