ALOJADO - FERNANDEZ - LONTOK - Final Laboratory Activity#3 - Functions
ALOJADO - FERNANDEZ - LONTOK - Final Laboratory Activity#3 - Functions
#include <limits>
using namespace std;
int main() {
int num1, num2;
cout << "\nThe Greatest Common Factor (GCF) of " << num1 << " and " << num2 << " is: " << gcdResult
<< endl;
cout << "The Least Common Multiple (LCM) of " << num1 << " and " << num2 << " is: " << lcmResult <<
endl;
commonDivisors(num1, num2);
return 0;
}