Title: Decompose a positive integer into factorization. For example: Enter 90 and print out 90=2*3*3*5.

Source: Internet
Author: User

1 ImportJava.util.*;2  Public classlianxi04{3      Public Static voidMain (String []a) {4Scanner s =NewScanner (system.in);5System.out.print ("Please type a positive integer:"); 6         intn=s.nextint ();7         intk=2; 8System.out.print (n + "=" );9          while(k <=N) {Ten             if(k = = N) {System.out.println (n); Break;} One             Else if(n% k = = 0) {System.out.print (k + "*")); An = n/K; -             }  -             Elsek++; the         } -  -     } -  +}

Program Analysis: ForNto decompose factorization, you should first find a minimum prime numberk, and then complete the following steps:   
(1)If this prime number equalsN, the process of decomposing the factorization is finished and printed out.    
(2)ifN <> k, butNcan bekdivisible, you should print outkvalue and use theNdivided bykthe Business,as the new positive integer youN,repeat the first step.    
(3)ifNcannot bekdivisible, then usek+1as akthe value,repeat the first step.  

Title: Decompose a positive integer into factorization. For example: Enter 90 and print out 90=2*3*3*5.

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.