质数因子

质数因子

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

import java.util.*;

public class Main 
{
    public Main() 
    {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLong()) {
            long n = in.nextLong();
            StringBuilder output = new StringBuilder();
            for (int i = 2; i <= n; i++) {
                while (n % i == 0) {
                    output.append(i).append(" ");
                    n /= i;
                }
            }
            System.out.println(output);
       }
    }

    public static void main(String[] args) 
    {
        Main solution = new Main();
    }
}
全部评论
也超时了。。哎。。你们先运行通过了再发评论比较好吧 兄弟
点赞 回复 分享
发布于 2021-03-07 16:15

相关推荐

头像
11-18 16:08
福州大学 Java
影流之主:干10年不被裁,我就能拿别人一年的钱了,日子有盼头了
点赞 评论 收藏
分享
10-15 16:27
门头沟学院 C++
LeoMoon:建议问一下是不是你给他付钱😅😅
点赞 评论 收藏
分享
4 收藏 评论
分享
牛客网
牛客企业服务