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

为什么不能运行呢?

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 = onr + two==>"+ three);
        three+=one;
        System.out.println("three += one ==>" + three);
        three-=one;
        System.out.println("three -= one ==>" + three);
        three*=one;
        System.out.ptintln("three *= one ==>" + three);
        three/=one;
        System.out.println("three /= one ==>" + three);
        three%=one;
        System.out.println("three %= one ==>" + three);
        }
        }

正在回答

4 回答

第7行one写错了,第13行println写错了,细心一点就好啦

0 回复 有任何疑惑可以回复我~
System.out.println("three = one + two ==>"+(three=one+two));        System.out.println("three += one ==>"+(three +=one));        System.out.println("three -= one ==>"+(three -=one));        System.out.println("three *= one ==>"+(three *=one));        System.out.println("three %= one ==>"+(three %=one));


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

还有你的第四个println也写错了呢,细心点哦,加油!

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

 System.out.println("three = onr + two==>"+ three);

你的one写错了吧,改了试试

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

举报

0/150
提交
取消

为什么不能运行呢?

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