人称大帅逼
2018-09-03 21:09
这是我的代码,我是直接让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);
30
40
30
300
30
0
答案
Java入门第一季(IDEA工具)升级版
1165793 学习 · 17588 问题
相似问题