mmathlib/fractions.cpp

19 lines
403 B
C++
Raw Normal View History

2020-04-18 13:22:02 +02:00
#include <iostream>
#include "fractions.hpp"
int main() {
int a = 7;
int b = 3;
int c = 1;
int d = 11;
fraction q(a,b);
fraction q2(c,d);
cout << a << "/" << b << '=' << q << endl;
cout << q << "+" << q2 << '=' << q + q2 << endl;
cout << q << "-" << q2 << '=' << q - q2 << endl;
cout << q << "*" << q2 << '=' << q * q2 << endl;
cout << q << "/" << q2 << '=' << q / q2 << endl;
return 0;
}