关于赋值运算覆盖之前的值问题
这是我的代码,我是直接让three的值打印出来,没有像标准答案一样先定义再打印也会覆盖之前three的值吗?因为我有点python的基础,这个和python差的有点远,所以不大好接受。
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
System.out.println(three=one+two);
System.out.println(three += one);
System.out.println(three -= one);
System.out.println(three *= one);
System.out.println(three /= one);
System.out.println(three %= one);