求解,报错,就是不知道哪里有问题

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

宝慕林9507558

2019-04-09 22:05

public class HelloWorld{

    public static void main(String[] args) {

    int one = 10 ;

        int two = 20 ;

        int three = 0 ;

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

        three += one;

        System.out.pringln("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回答

  • 夜夜kawayi呦
    2019-04-09 22:12:02
    已采纳

    少了three=one+two的计算,第二个println打错了。

  • 慕函数2274273
    2019-04-12 20:53:37

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

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

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

1165565 学习 · 17587 问题

查看课程

相似问题