不分别赋值怎么输出呢?

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

慕粉4034683

2016-09-22 10:07

这个怎么输出呢?每个“three”都不一样的值,每次需要给赋值到一个变量中吗?如果不赋值最后要怎样才能把那几个数值全部输出呢?

写回答 关注

4回答

  • 我改名字了
    2016-09-22 13:46:34
    已采纳

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

            three+=one;

            System.out.println(three);

            three-=one;

            System.out.println(three);

            three*=one;

            System.out.println(three);

            three/=one;

            System.out.println(three);

            three%=one;

            System.out.println(three);

    }

    }

    //每个“three”都不一样的值,每次需要给赋值到一个变量中吗?

    //只有一个变量,名字叫所three。每次变化后输出即可!!!

  • qq_行在天涯_04096833
    2016-10-09 14:51:27

    public class Fanch {

    public static void main(String[] args){

    int one=10;

    int two=20;

    int three=0;

    int t1=three=one+two;

    int t2=three+=one;

    int t3=three-=one;

    int t4=three*=one;

    int t5=three/=one;

    int t6=three%=one;

    System.out.println(t1);

    System.out.println(t2);

    System.out.println(t3);

    System.out.println(t4);

    System.out.println(t5);

    System.out.println(t6);

    我是这样的,也对的,但是觉得有点麻烦。还是一楼分别赋值输出好用

  • 影秋
    2016-09-22 11:55:05

    因为改变的就是three的值,one two是不变的,

  • iyunteng
    2016-09-22 11:39:02

    写完一条运算,跟一条输出语句

    three = one + two;

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

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

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

1165172 学习 · 17581 问题

查看课程

相似问题