-
Notifications
You must be signed in to change notification settings - Fork 246
/
C++ code
90 lines (78 loc) · 2.21 KB
/
C++ code
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
#include <iostream>
using namespace std;
// Function to perform addition
double add(double a, double b) {
return a + b;
}
// Function to perform subtraction
double subtract(double a, double b) {
return a - b;
}
// Function to perform multiplication
double multiply(double a, double b) {
return a * b;
}
// Function to perform division
double divide(double a, double b) {
if (b != 0) {
return a / b;
} else {
cout << "Error: Division by zero!" << endl;
return 0;
}
}
int main() {
double num1, num2;
char operation;
bool running = true;
while (running) {
// Display menu
cout << "Simple Calculator" << endl;
cout << "Choose an operation:" << endl;
cout << "+ : Addition" << endl;
cout << "- : Subtraction" << endl;
cout << "* : Multiplication" << endl;
cout << "/ : Division" << endl;
cout << "q : Quit" << endl;
// Take user input for operation
cout << "Enter operation: ";
cin >> operation;
// Check if the user wants to quit
if (operation == 'q') {
running = false;
break;
}
// Take user input for numbers
cout << "Enter first number: ";
cin >> num1;
cout << "Enter second number: ";
cin >> num2;
// Perform the selected operation
double result;
switch (operation) {
case '+':
result = add(num1, num2);
cout << "Result: " << result << endl;
break;
case '-':
result = subtract(num1, num2);
cout << "Result: " << result << endl;
break;
case '*':
result = multiply(num1, num2);
cout << "Result: " << result << endl;
break;
case '/':
result = divide(num1, num2);
cout << "Result: " << result << endl;
break;
default:
cout << "Invalid operation!" << endl;
break;
}
// Adding a newline for better readability
cout << endl;
}
cout << "Calculator closed." << endl;
return 0;
}