华为机试—— 6.质数因子

Posted bopo

tags:

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

题目

技术分享图片

解法

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        
        Scanner sc = new Scanner(System.in);
        
        long x = sc.nextLong();
        
        int base = 2;
        
        while(x>1){
            
            if(x % base == 0){
                System.out.print(base+" ");
                x /= base;
            }else {
                base++;
            }
            
        }
        
        sc.close();
    }

    
}

 

以上是关于华为机试—— 6.质数因子的主要内容,如果未能解决你的问题,请参考以下文章

华为机试HJ6:质数因子

华为python机试题目:坐标移动字符个数统计字符串排序字符串加密字符串分割字符串反转质数因子

华为机试题分析 6 质数因子

华为机试题分析 6 质数因子

华为OJ-质数因子

1-6质数因子