问答详情
源自:3-3 Java中的赋值运算符

每次打印前,再次对three声明

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

        

        

        

        

        

        

        

        

        

        

        

        

        

        

    

}

}


提问者:qq_慕斯卡1333655 2021-07-07 18:28

个回答

  • 薄肆
    2021-07-21 11:22:52

    可以直接在打印语句对three进行运算说明