摘要: 题目链接:https://leetcode-cn.com/problems/count-primes/ 题意:求小于n的数有多少质数 分析:没啥可分析的 class Solution { public: static bool rule(int x){ for(int i=2;i*i<=x;i++) 阅读全文
posted @ 2020-12-03 10:02 清酒令 阅读(56) 评论(0) 推荐(0)