-
Notifications
You must be signed in to change notification settings - Fork 1
/
3 Task
57 lines (52 loc) · 1.23 KB
/
3 Task
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
#include <iostream>
using namespace std;
int main()
{
setlocale(0, "");
double num1 = 0, num2 = 0,res = 0;
char oper;
cout << "[Супер-пупер калькулятор]" << endl;
cout << "Введите первое число: ";
cin >> num1;
cout << endl;
cout << "[+] сложение [-] вычитание [/] деление [*] умножение [%] деление от остатка" << endl;;
cout << "Введите символ действия: ";
cin >> oper;
cout << endl;
cout << "Введите второе число: ";
cin >> num2;
if (oper == '+')
{
res = num1 + num2;
}
else if (oper == '-')
{
res = num1 - num2;
}
else if (oper == '/')
{
if (num2 == 0)
{
cout << "Ошибка!!!" << endl;
cout << "деление на ноль запрещено!!!";
return 0;
}
res = num1 / num2;
}
else if (oper == '*')
{
res = num1 * num2;
}
else if (oper == '%')
{
int res1 = int(num1) % int(num2);
res = res1;
}
else
{
cout << "Ошибка ввода, неприемлимое значение!!!" << endl;
return 0;
}
cout << "[Результат] " <<num1 <<" " << oper << " " << num2 << " = " << res << endl;
return 0;
}