Java Practice (iv)--decomposition factorization

Source: Internet
Author: User

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

Program Analysis: The decomposition of n factorization, should first find a minimum prime number k, and then the following steps to complete:

(1) If the prime number is exactly equal to N, then the process of decomposing the factorization is finished and printed out.

(2) if n<>k, but n can be divisible by K, the value of k should be printed, and n divided by the quotient of K, as a new positive integer n, repeat the first step.

(3) If n cannot be divisible by K, the first step is repeated with k+1 as the value of K.

 Public classTest1 { Public voidZhiintN) {System.out.print (n+"=");  for(inti=2;i<=n;i++){             while(N%i==0 && n!=i) {N/=i; System.out.print (i+"*"); }            if(n==i)                {System.out.println (i);  Break; }        }    }     Public  Static voidMain (string[] args) {Test1 test=NewTest1 (); Test.zhi (20); }}

Java Practice (iv)--decomposition factorization

Related Article

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.