摘要: 第一题:看程序说答案int a = 10;int b = 3;int c = a + b; //13int d = a - b; //7int e = a * b; //30int f = a / b; //3int g = a % b; //1a++; //10++a; //12b--; //3- 阅读全文
posted @ 2020-10-12 21:48 苦月亮 阅读(187) 评论(0) 推荐(0)