码迷,mamicode.com
首页 > 编程语言 > 详细

Java将一个正整数分解质因数

时间:2020-05-04 19:45:17      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:string   system   edr   integer   actor   color   readline   rgs   exce   

import java.io.*;
public class Factorization 
{
    public void division(int input)
    {
        for(int i = 2; i <= input / 2; i++)
        {
            if(input % i == 0)
            {
            System.out.print(i + "*");
            division(input / i);
            }
        }
        System.out.print(input);
        System.exit(0);//不能没有这句,否则结果会报错
    }
    
    public static void main(String[] args)
    {
        Factorization f = new Factorization();
        
        String s = "";
        try
            {
            BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
            s = in.readLine();
            
            }
        catch(IOException e){}
        int input = Integer.parseInt(s);
        
        System.out.print(input + "的分解质因数为:" + input + "=");
        f.division(input);
    }
}

http://m.lcap365.cn    http://m.lcap365.cn/pgdb    http://m.lcap365.cn/pgbk    http://m.lcap365.cn/pgtp     http://m.lcap365.cn/pgjs 

http://m.lcap365.cn/lcxw    http://m.lcap365.cn/dljm

Java将一个正整数分解质因数

标签:string   system   edr   integer   actor   color   readline   rgs   exce   

原文地址:https://www.cnblogs.com/javaahb/p/12827503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!