//运行示例:默尼森数有:3.0 7.0 31.0 127.0 8191.0
//代码:
import java.util.ArrayList;
import java.util.List;
public class tet {
static List<Double>TS1=new ArrayList<Double>();//存放默尼森数
public static void main(String[] args) {
int p = 2;
int c =5;//默尼森数个数
while(c>0){
double m=0;
if(show(p)&&show((Math.pow(2,p)-1)))
{TS1.add(Math.pow(2, p)-1);c--;}
p++;
}
System.out.print("默尼森数有:");
for(Double x1:TS1){
System.out.print(x1+" ");}
}
//判断函数
public static boolean show(double n){
if(n==2||n==3)return true;
int t=0;
for(int i=2;(i*i)<=n;i++){
if(n%i==0)t++;
}
if(t==0)return true;
else return false;
}
}
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦