第一题:看程序说答案int a = 10;int b = 3;int c = a + b;int d = a - b;int e = a * b; int f = a / b; int g = a % b;a++;++a;b--;--b;a=12 b=1