3-3 习题

来源:-

涅米

2017-02-23 11:15

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

请问这段代码的问题出在哪里?为什么无法显示答案

写回答 关注

1回答

  • Silent_Cty
    2017-02-23 11:27:45
    已采纳

    这代码没问题,应该是eclipse的运行问题吧

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

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

1165172 学习 · 17581 问题

查看课程

相似问题

3-3练习题

回答 1

3-3练习题

回答 2

3-3练习题

回答 2

6-3习题

回答 1

3-8练习题

回答 2