给定一个整数进行质因数分解

package showTwos;import java.util.Scanner;public class ShowTwos {//用户输入一整数,将其进行质因数分解,并打印分解结果。 public static void main(String[] args) { System.out.print("input an integer: "); Scanner console = new Scanner(System.in); int number = console.nextInt(); System.out.p...
posted on 2014-03-20 09:24  Sweet Smile  阅读(678)  评论(0编辑  收藏  举报