本文共 526 字,大约阅读时间需要 1 分钟。
public class Test { public static void main(String[] args) { int a = 10; int b = 20; int c = 0; c = a + b; System.out.println("c = a + b = " + c); c += a; System.out.println("c += a = " + c); c -= a; System.out.println("c -= a = " + c); c *= a; System.out.println("c *= a = "); } } 转载地址:http://efhfk.baihongyu.com/