摘要: #include #include #include using namespace std; bool judge(int n) {//判断整数奇偶 偶数返回true if(n % 2 == 0) return true; else return false; } double getAMid(int a[], int x, int y) {//求一个数组的中位数 ... 阅读全文
posted @ 2019-03-11 21:00 Kiss_the_rain 阅读(514) 评论(0) 推荐(0) 编辑