博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
I - How many prime numbers
阅读量:6296 次
发布时间:2019-06-22

本文共 666 字,大约阅读时间需要 2 分钟。

Give you a lot of positive integers, just to find out how many prime numbers there are.

Input  There are a lot of cases. In each case, there is an integer N representing the number of integers to find. Each integer won’t exceed 32-bit signed integer, and each of them won’t be less than 2.Output  For each case, print the number of prime numbers you have found out.Sample Input

32 3 4

Sample Output

2 这是一道素数题。最关键得是我们要通过这道题学会筛选素数的算法。(这提别重要) 毫无疑问这是一道打表题,别问我为什么?这是经验。其实这是有规律的 我把实现筛选素数的算法给出来 #include 
#include
#define N 10000001 int prime[N]; int main() {
   int i, j; for(i=2; i

转载于:https://www.cnblogs.com/damaoranran/p/8748350.html

你可能感兴趣的文章
2019年-年终总结
查看>>
聊聊elasticsearch的RoutingService
查看>>
让人抓头的Java并发(一) 轻松认识多线程
查看>>
从源码剖析useState的执行过程
查看>>
地包天如何矫正?
查看>>
中间件
查看>>
Android SharedPreferences
查看>>
css面试题
查看>>
Vue组建通信
查看>>
用CSS画一个带阴影的三角形
查看>>
前端Vue:函数式组件
查看>>
程鑫峰:1.26特朗.普力挺美元力挽狂澜,伦敦金行情分析
查看>>
safari下video标签无法播放视频的问题
查看>>
01 iOS中UISearchBar 如何更改背景颜色,如何去掉两条黑线
查看>>
对象的继承及对象相关内容探究
查看>>
Spring: IOC容器的实现
查看>>
Serverless五大优势,成本和规模不是最重要的,这点才是
查看>>
Nginx 极简入门教程!
查看>>
iOS BLE 开发小记[4] 如何实现 CoreBluetooth 后台运行模式
查看>>
Item 23 不要在代码中使用新的原生态类型(raw type)
查看>>