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

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

慕丝7272571

2020-07-03 17:20

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回答

  • 宝慕林2521228
    2020-07-03 22:36:18
    已采纳

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

  • 精慕门8058819
    2020-07-12 16:48:30

    +=  那块 println 少一个t 

    慕姐4377...

    优秀 66

    2021-05-19 17:20:05

    共 2 条回复 >

  • 慕丝7272571
    2020-07-04 09:34:56

    把 one two three 定义为double类型吗

    慕先生507...

    double是用于价格和平均数

    2020-09-22 18:43:17

    共 1 条回复 >

  • 慕丝7272571
    2020-07-04 09:30:18

    那应该怎么修改呢

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

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

1165172 学习 · 17581 问题

查看课程

相似问题