Home  >  Article  >  Backend Development  >  C program to find the largest prime factor of a number

C program to find the largest prime factor of a number

王林
王林forward
2023-08-27 10:09:051451browse

C program to find the largest prime factor of a number

Prime Factor− In number theory, the prime factors of a positive integer are the prime numbers that divide that integer exactly. The process of finding these numbers is called integer factorization, or prime factorization.

Example− Prime factors of 288 are: 288 = 2 x 2 x 2 x 2 x 2 x 3 x 3

Input: n = 124
Output: 31 is the largest prime factor!

Explanation

You will find all the prime factors of a number and find the largest prime factor among them. The prime factors of 124 are 2 x 2 x 31, where 31 is the largest prime factor.

Example

#include <stdio.h>
int main() {
   long int n;
   n=3453;
   long int div=2, ans = 0, maxFact;
   while(n!=0) {
      if(n % div !=0)
         div = div + 1;
      else {
         maxFact = n;
         n = n / div;
         if(n == 1) {
            printf("%d is the largest prime factor !",maxFact);
            ans = 1;
            break;
         }
      }
   }
   return 0;
}

Output

1151 is the largest prime factor !

The above is the detailed content of C program to find the largest prime factor of a number. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete