标题:题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。
只看楼主
cqyy725
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2010-12-8
得分:0 

public class t111 {
    /**
     *
     * 将一个正整数分解质因数。
     */
    public static void main(String args[]) {
        Scanner input = new Scanner(System.in);

        System.out.println("请输入一个整数按回车确认");

        int num = input.nextInt();

        System.out.print(num + "=");
        if (num == 1) {
            System.out.println(1);
        }
           
        for (int i = 2; i < num + 1; i++) {
            if (num % i == 0) {
                System.out.print(i);
                num = num / i;
                i--;
                if (num != 1) {
                    System.out.print("*");
                }
            }
        }
    }

}
2010-12-08 22:25



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-174529-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.276027 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved