求一个数的所有因子,因子个数 ——Java

普通做法


public class Main {
    static int j = 0;
    static int[] ssss = new int[10001];
    public static void main(String[] args) {
        sn(30);
        for (int i = 0; i < j; i++) {
            System.out.println(ssss[i]);
            /*	
            	1
				30
				2
				15
				3
				10
				5
				6
            */
        }
    }
    /*
       求一个数的所有因子
    */
    public static void sn(int s){
        for(int i = 1;i <= s/i;i++) {
            if (s % i == 0) {
                ssss[j++] = i;
                if (i * i != s)
                    ssss[j++] = s / i;
            }
        }
    }
}

唯一分解定理
在这里插入图片描述
在这里插入图片描述


import java.util.Scanner;

public class Main {
    static int index = 0;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] su = new int[100001];   //素数表
        int[] sus = new int[100001]; //在唯一分解定理中出现的素数
        int[] ci = new int[100001]; //各个素数的指数
        int ind = 0;
        sushu(su, n);
        int c = n;
        boolean flag = false;
        //唯一分解定理 求出 x = p1^a1 * p2^a2 .... 的形式
        for (int i = 0; i < index; i++) {
            if (c == 1) {
                break;
            }
            while (c % su[i] == 0) {
                c /= su[i];
                sus[ind] = su[i];
                ci[ind]++;
                flag = true;
            }
            if (flag) {
                ind++;
            }
            flag = false;
        }
        int ans = 1;
        for(int i = 0;i<ind;i++){
            ans *= (1+ci[i]);//求出因子个数
        }
        System.out.println(ans);
    }
    //构造素数表
    public static void sushu(int[] su,int n) {
        boolean[] vis = new boolean[n + 1];
        int m = (int) Math.sqrt(n + 0.5);
        for (int i = 2; i <= m; i++) {
            if (vis[i] == false) {
                for (int j = i * i; j <= n; j += i) {
                    vis[j] = true;
                }
            }
        }
        for(int i = 2;i<=n;i++){
            if(vis[i] == false){
                su[index++] = i;
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Uranus^

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值