received lab 5 other day.. Teacher supplied us with2 fractions and told us to write a function to get the common denominator. I think the logic is whats confusing. I dont want problem solved for me just asking for some help on logic part.
#include <iostream>
using namespace std;
// Prototype Declaration
void GetCd( int&, int&);
void main()
{
int fraction1num = 5;
int fraction1den = 10;
int fraction2num; = 5
int fraction2den = 20;
}
// Get Common Den.
void GetCd(int& fraction1den , int& fraction2den)
{
}
