摘要: 今日分享 第一题:看程序说答案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++;// 10++a;//12b--;//3--b;//1 c++;//13 ++c 阅读全文
posted @ 2020-10-12 20:49 ぁ晴 阅读(116) 评论(0) 推荐(0)