质数因子

质数因子

http://www.nowcoder.com/questionTerminal/196534628ca6490ebce2e336b47b3607

import java.io.*;
import java.util.*;

public class Main{
    public static void main(String[] args) throws Exception{
        Scanner sc = new Scanner(System.in);
       while(sc.hasNextLong()){
            long s = sc.nextLong();
           for (int i = 2; i <= Math.sqrt(s); i++) {
                if (s % i == 0) {
                    System.out.print(i + " ");
                    s = s / i;
                    // 还需要进行 i 判断, i -- 和 i++ 进行抵消,保证为 i 
                    i--;
                }
            }
            System.out.println(s + " ");
       }
    }
}
全部评论
这个可以 重点1.i <= Math.sqrt(s) 2.已经是最质因子的不需要再判断,这样就不会重复去计算
点赞 回复 分享
发布于 2021-09-17 20:51

相关推荐

10-24 11:10
山西大学 Java
若梦难了:哥们,面试挂是很正常的。我大中厂终面挂,加起来快10次了,继续努力吧。
点赞 评论 收藏
分享
1 3 评论
分享
牛客网
牛客企业服务