65: Write a program in C++ to find the Greatest Common Divisor (GCD) of two numbers.
// Write a program in C++ to find the Greatest Common Divisor (GCD) of two numbers. Go to the editor
// Sample Output:
// Input the first number: 25
// Input the second number: 15
// The Greatest Common Divisor is: 5
// **************************************************************************************************
#include <iostream>
using namespace std;
int main()
{
int num1, num2, gcd = 0;
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 (GCD) of " << num1 << " and " << num2 << " is: " << gcd;
return 0;
}
Comments
Post a Comment