help with classes I need get these denominators to multiply and numerators as well and for some reason the numerator is switched with the denominator and the other one will not multiply for whatever reason. I do need have them divide and add and subtract as well later but one step at a time. here is my code.
#include <iostream>
#include "fraction.h"
usingnamespace std;
int main()
{
fraction f1(9,8); //calling a parameterized class constructor
fraction f2(2,3); //calling a parameterized class constructor
fraction result; //calling a default class constructor
fraction f3; //calling a default class constructor
cout << "The result starts off at ";
result.print(); //calling an observer function
cout << endl;
cout << "The product of ";
f1.print();
cout << " and ";
f2.print();
cout << " is ";
result = f1.MultipliedBy(f2); //a class binary operation - function
result.print();
cout << endl;/
The result starts off at 0/1
The product of 9/8 and 2/3 is 24/3
Process returned 0 (0x0) execution time : -0.000 s
Press any key to continue.