Tagged Questions
2
votes
2answers
13k views
C++ program to calculate greatest common divisor [closed]
I have started this program to calculate the greatest common divisor. This is what I have so far:
#include <iostream>
#include <math.h>
using namespace std;
int getGCD(int a, int b)
{
...