答案!!!!!!!!!!!!

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

Jasono

2015-10-27 10:04

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

       

        three = one + two;

        three += one;

        three -= one;

        three *= one;

        three /= one;

        three %= one;

        

        


写回答 关注

1回答

  • java2018
    2015-11-25 20:23:00

    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环境搭建、工具使用、基础语法开始

1163394 学习 · 17551 问题

查看课程

相似问题

这答案?!

回答 2

答案有误?

回答 3

正确答案

回答 1

我的答案

回答 2