计算质数

Posted HelloWorld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算质数相关的知识,希望对你有一定的参考价值。

package test.com.ict.compent.amazom;

import java.util.ArrayList;
import java.util.List;

public class MathPrime {
    public static void main(String[] args) {
        List<Integer> add = new MathPrime().mathPrime(100);
        for (Integer integer : add) {
            System.out.print(integer+",");
        }
    }
    
    public List<Integer> mathPrime(int num){
        List<Integer> list=new ArrayList<Integer>(); 
        
        while(true){
            boolean a=false;
            Integer zhishu = zhishu(num);
            list.add(zhishu);
            if(zhishu==num){
                a=true;
            }else{
                num=num/zhishu;
            }
            if(a){
                break;
            }
        }
        
        return list;
    }
    
    public Integer zhishu(int num){
        int a=0;
        for (int i = 2; i < num; i++) {
            if(num%i!=0){
                continue;
            }else{
                a=i;
                break;
            }
        }
        if(a==0){
            a=num;
        }
        return a;
        
    }
    
}

 

以上是关于计算质数的主要内容,如果未能解决你的问题,请参考以下文章

762. 二进制表示中质数个计算置位『简单』

给定一个正整数,编写程序计算有多少对质数的和等于输入的这个正整数,并输出结果。

Eular质数筛法

计算质数问题

半期考试 质数计算

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销