帮我看看代码有什么问题

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

慕粉9953046

2018-09-12 15:03

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

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

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

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

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

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

}

}


写回答 关注

2回答

  • 你大大爷
    2018-09-22 21:44:04

    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.print("three += one ==> " + three);

            three -= one;

            System.out.print("three -= one ==> " + three);

            three *= one;

            System.out.print("three *= one ==> " + three);

            three /= one;

            System.out.print("three /= one ==> " + three);

            three %= one;

            System.out.print("three %= one ==> " + three);

    仔细看要求。他要的结果有好几个,而你只赋了一次值,也就是:three = one + two;

  • 慕娘7447933
    2018-09-12 15:39:12

    System.out.println后面括号中“”里面的东西都会以原模原样出现在结果中,真正输出的值是+后面的变量的值,所以你的代码应该是全都输出30吧

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

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

1165172 学习 · 17581 问题

查看课程

相似问题