

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Count common prime factors of two numbers in C++
We are given the two numbers let’s say x and y and the task is to find the common prime factors between two numbers. Common prime factors can be found by firstly calculating the common numbers between two numbers and after that checking from the list of common factors the one which are prime numbers.
For Example
Input − x = 10 y = 20 Output − Common prime factor of two numbers are: 2 5
Explanation − common primes factors between 10 and 20 are 2 and 5 only.
Input − x = 34 y = 12 Output − Common prime factor of two numbers are: 2
Explanation − common primes factors between 34 and 12 are 2.
Approach used in the below program is as follows
Input the values of two numbers x and y.
Create a function and inside a function
Declare a temporary variable that will the greatest common divisor of numbers x and y
Create a loop starting from 2 till it’s less than or equals to GCD and increment the i
Inside the loop check whether prime[i] && GCD%i = 0 and if this is true
Print the value of i
Print the result
Example
#include <bits/stdc++.h> using namespace std; #define MAX 100001 bool prime[MAX]; void SieveOfEratosthenes(){ // Create a boolean array "prime[0..n]" and initialize // all entries are true. A value in prime[i] will // finally be false if i is Not a prime, else true. memset(prime, true, sizeof(prime)); // 0 and 1 are not prime numbers prime[0] = false; prime[1] = false; for (int p = 2; p * p <= MAX; p++){ // If prime[p] is not changed, then it is a prime if (prime[p] == true){ // Updating all multiples of p as non-prime for (int i = p * p; i <= MAX; i += p){ prime[i] = false; } } } } // Function to find the common prime numbers void common_prime(int x, int y){ // Obtain the GCD of the given numbers int g = __gcd(x, y); // Find the prime divisors of the g for (int i = 2; i <= (g); i++){ // If i is prime and divisor of g if (prime[i] && g % i == 0){ cout << i << " "; } } } // main code int main(){ // Creating the Sieve SieveOfEratosthenes(); int x = 20, y = 30; cout<<"Common prime factor of two numbers are: "; common_prime(x, y); return 0; }
Output
If we run the above code it will generate the following output −
Common prime factor of two numbers are: 2 5
- Related Questions & Answers
- Count of common multiples of two numbers in a range in C++
- Program to count number of common divisors of two numbers in Python
- Count numbers in a range having GCD of powers of prime factors equal to 1 in C++
- Count numbers from range whose prime factors are only 2 and 3 in C++
- Print all numbers whose set of prime factors is a subset of the set of the prime factors of X in C++
- Prime factors in java
- Print the kth common factor of two numbers
- C++ Program for Common Divisors of Two Numbers?
- Python Program for Common Divisors of Two Numbers
- Java Program for Common Divisors of Two Numbers
- Maximum factors formed by two numbers in Python
- Prime factors of a big number in C++
- Maximum number of unique prime factors in C++
- Prime factors of LCM of array elements in C++
- Position of rightmost common bit in two numbers in C++