摘要:
#include <iostream>using namespace std; void complete_square(){ int n,i, high, low; for (i = 1;; i++) { n = i * i; if (n < 1000) continue; if (n > 999 阅读全文
摘要:
#include <iostream> using namespace std;void judge_triangle(int L, int m, int s); // 若函数调用顺序和函数的编写不一致,需要声明函数// 三数排序--从大到小void trangle(int x, int y, in 阅读全文