Factorization a positive integer into a prime factor. For example, enter 90 and print 90 = 2*3*3*5.

Source: Internet
Author: User

// Question: decompose a positive integer into a prime factor. For example, enter 90 and print 90 = 2*3*3*5.
// Program analysis: to decompose the prime factor of N, you should first find a minimum prime number k, and then follow the steps below to complete:
// (1) if the prime number is equal to N, it indicates that the process of decomposing the prime factor is over. Print it out.
// (2) if n <> K, but N can be divisible by K, the value of K should be printed and divided by the quotient of N, as the new positive integer you n, repeat the first step.
// (3) if n cannot be divisible by K, k + 1 is used as the value of K and the first step is repeated.

Package com. MuMu. ready;

 

Import java. util. collections;

Public class fenjie {

Public static void main (string [] ARGs ){
Pipeline can = new pipeline (system. In );
System. Out. println ("enter a positive integer :");
Int n = can. nextint ();
System. Out. Print (n + "= ");
For (int K = 2; k <n/2; k ++ ){
If (n = K)
System. Out. println (k );
Else {
If (N % K = 0 ){
System. Out. Print (K + "*");
N = N/K;
}
}
}
System. Out. println (N );
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.