摘要: 第一题: 看程序说答案 int a = 10; int b = 3; int c = a + b;c=13 int d = a - b;d=7 int e = a * b;e=30 int f = a / b;f=3 int g = a % b;g=1 a++;a=11 ++a;a=11 b--;b 阅读全文
posted @ 2020-10-12 20:15 呕吼123 阅读(58) 评论(0) 推荐(0) 编辑