码迷,mamicode.com
首页 > 其他好文 > 详细

杂-关于素数

时间:2018-04-26 21:02:49      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:for   ||   color   class   span   tmp   pre   ret   SQ   

大于5的素数总是围绕着6,一定满足6*i-1或6*i+1;但满足6*i-1或6*i+1的数不一定是素数。

判断的时候每步的跨数为6。

int judg(int a) {
        int tmp=(int) Math.sqrt(a);
        if(a==1)
            return 0;
        if(a==2 || a==3)
            return 1;
        if(a%6!=1 &&a%6!=5)
            return 0;
        for(int i=5;i<=tmp;i+=6) {
            if(a%i==0||a%(i+2)==0)
                return 0;
        }
        return 1;
    }

 

杂-关于素数

标签:for   ||   color   class   span   tmp   pre   ret   SQ   

原文地址:https://www.cnblogs.com/liuzey/p/8954757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!