-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn arithmetic vol.2.cpp
131 lines (112 loc) · 2.08 KB
/
learn arithmetic vol.2.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include<iostream>
using namespace std;
void add() {
float x;
cout << "Enter first number: ";
cin >> x;
float y;
cout << "Enter second number: ";
cin >> y;
float addition;
cout << "What is addition result? ";
cin >> addition;
float prog_add = x+y;
if (prog_add == addition)
{
cout << "Good job!"<<endl;
}
else
{
cout << "Wrong answer"<<endl;
}
}
void subtract() {
float x;
cout << "Enter first number: ";
cin >> x;
float y;
cout << "Enter second number: ";
cin >> y;
float subtraction;
cout << "What is subtraction result? ";
cin >> subtraction;
float prog_subtract = x-y;
if (prog_subtract == subtraction)
{
cout << "Good job!"<<endl;
}
else
{
cout << "Wrong answer"<<endl;
}
}
void multiply() {
float x;
cout << "Enter first number: ";
cin >> x;
float y;
cout << "Enter second number: ";
cin >> y;
float multiplication;
cout << "What is multiplication result? ";
cin >> multiplication;
float prog_multiply = x*y;
if (prog_multiply == multiplication)
{
cout << "Good job!"<<endl;
}
else
{
cout << "Wrong answer"<<endl;
}
}
void divide() {
float x;
cout << "Enter first number: ";
cin >> x;
float y;
cout << "Enter second number: ";
cin >> y;
float division;
cout << "What is division result? ";
cin >> division;
float prog_divide = x/y;
if (prog_divide == division)
{
cout << "Good job!"<<endl;
}
else
{
cout << "Wrong answer"<<endl;
}
}
void loop(string operation){
if (operation == "Add")
{
add();
}
if (operation == "Subtract")
{
subtract();
}
if (operation == "Multiply")
{
multiply();
}
if (operation == "Divide")
{
divide();
}
}
int main() {
string operation;
cout << "Enter operation: " <<endl;
cin >> operation;
while (operation != "Quit")
{
loop(operation);
cout << "Enter operation: " <<endl;
cin >> operation;
}
return 0;
}