-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSource.cpp
38 lines (29 loc) · 947 Bytes
/
Source.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <iostream>
#include "Fraction.h"
using namespace std;
int main() {
cout << "Welcome\n";
Fraction num1, num2;
int choice{ 1 };
while (choice) {
cout << "\nEnter the first fraction in the form X / Y :\n";
cin >> num1;
cout << "\nEnter the second fraction in the form X / Y :\n";
cin >> num2;
cout << endl;
cout << num1 << " + " << num2 << " = ";
cout << num1 + num2 << endl << endl;
cout << "Would you like to run the program again?\n";
cout << "Enter 1 for YES\nEnter 0 to Exit\n";
cin >> choice;
cout << endl;
while (choice != 1 && choice != 0) {
cout << "Please enter a valid number\n";
cout << "Enter 1 to restart the program\nEnter 0 to Exit\n";
cin >> choice;
}
}
cout << "Terminating Program...\n";
cout << "*Sad computer noises*" << endl;
return 0;
}