摘要: 第一题: 看程序说答案 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; 第二题: 看程序说 阅读全文
posted @ 2020-10-13 14:47 小朋- 阅读(77) 评论(0) 推荐(0)