Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the Greatest Common Divisor (GCD) of two numbers

C++ For Loop: Exercise-9 with Solution

Write a program in C++ to find the Greatest Common Divisor (GCD) of two numbers.

Pictorial Presentation:

C++ Exercises: Find the Greatest Common Divisor (GCD) of two numbers

Sample Solution :-

C++ Code :

#include <iostream>
using namespace std;
int main()
{
    int num1, num2, gcd;
    cout << "\n\n Find the Greatest Common Divisor of two numbers:\n";
    cout << "-----------------------------------------------------\n";
    cout << " Input the first number: ";
    cin >> num1;
    cout << " Input the second number: ";
    cin >> num2;

    for (int i = 1; i <= num1 && i <= num2; i++) 
    {
        if (num1 % i == 0 && num2 % i == 0) 
        {
            gcd = i;
        }
    }
    cout << " The Greatest Common Divisor is: " << gcd << endl;
    return 0;
}

Sample Output:

 Find the Greatest Common Divisor of two numbers:                      
-----------------------------------------------------                  
 Input the first number: 25                                            
 Input the second number: 15                                           
 The Greatest Common Divisor is: 5 

Flowchart:

Flowchart: Find the Greatest Common Divisor (GCD) of two numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the last prime number occur before the entered number.
Next: Write a program in C++ to find the sum of digits of a given number.

What is the difficulty level of this exercise?