摘要: 1.1.质数 1.1.1判定质数 #include <iostream>#include <algorithm>​using namespace std;​bool is_prime(int x){ if (x < 2) return false; for (int i = 2; i <= x / 阅读全文
posted @ 2022-07-29 10:42 YRJQD 阅读(202) 评论(0) 推荐(0)