-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcs135_lab5.cpp
74 lines (50 loc) · 1.16 KB
/
cs135_lab5.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//Captain-Price-TF-141
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
double numbertwo, numberone, answer, infinity;
char op;
cout << "Input First Value: " << endl;
cin >> numberone;
cout << "Input Second Value: " << endl;
cin >> numbertwo;
if (cin.fail())
{
cout << "This is not a number >:(" << endl;
return 1;
}
cout << numberone << "this is a number!" << endl;
cout << numbertwo << "this is a number!" << endl;
cout << "Operation to perform (+,-,/,*): " << endl;
cin >> op;
if (op == '+')
{
answer = numberone + numbertwo;
}
else
if (op == '-')
{
answer = numberone - numbertwo;
}
else
if (op == '*')
{
answer = numberone * numbertwo;
}
else
if (op == '/')
{
if (numbertwo == 0)
{
cout << "Infinity" << endl;
return 0;
}
else
answer = numberone / numbertwo;
}
cout << answer << endl;
return 0;
}