会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Bryce Chen
ONION_CYC
博客园
首页
管理
2017年6月2日
【51NOD-0】1106 质数检测
摘要: 【算法】数学 #include<cstdio> #include<cmath> bool ok(int x) { int m=(int)sqrt(x+0.5); for(int i=2;i<=m;i++) { if(x%i==0)return 0; } return 1; } int main()
阅读全文
posted @ 2017-06-02 22:01 ONION_CYC
阅读(239)
评论(0)
推荐(0)
编辑
公告