3 - PROLOG //хотя страшно представить себе, чтоб сейчас кто-то его использовал
4 - Loud speaker
5 - Interface
6 - Supercomputers
7 - Pascal
8 - American standard code for information interchange
9 (1) - Software tool
9 - Plotter
10 - Computer literacy
11 - ICTs
12 - LOGO
13 - Modulator
14 - Communication is sumply the act of transferring information from one place to another
15 - WinRAR
16 - Antivirus software
17 - Software consists of a series of related instructions, organized for a common purpose, that tells the computer what tasks to perform and how to perform them
/*суммы будем сравнивать по модулю, в ином случае программа не будет иметь смысла, так как сумма отрицательных всегда будет меньше, чем сумма положительных*/
1 - CPU
2 - Technological advancement
3 - PROLOG //хотя страшно представить себе, чтоб сейчас кто-то его использовал
4 - Loud speaker
5 - Interface
6 - Supercomputers
7 - Pascal
8 - American standard code for information interchange
9 (1) - Software tool
9 - Plotter
10 - Computer literacy
11 - ICTs
12 - LOGO
13 - Modulator
14 - Communication is sumply the act of transferring information from one place to another
15 - WinRAR
16 - Antivirus software
17 - Software consists of a series of related instructions, organized for a common purpose, that tells the computer what tasks to perform and how to perform them
19 - File name and extension
20 - Two
/*суммы будем сравнивать по модулю, в ином случае программа не будет иметь смысла, так как сумма отрицательных всегда будет меньше, чем сумма положительных*/
#include <iostream>
#include <cmath>
using namespace std;
void check() {
float s_positive = 0, s_negative = 0, digit;
try {
cout << "Начинайте ввод чисел" << endl;
do {
cin >> digit;
if (digit > 0)
s_positive += digit;
else
s_negative += digit;
} while (digit != 0);
if (s_positive > abs(s_negative))
cout << "Сумма положительных чисел больше!";
else if (abs(s_negative) > s_positive)
cout << "Сумма отрицательных чисел больше!";
else
cout << "Суммы равны по модулю!";
}
catch (...) {
cout << "Ошибка!";
}
}
signed main() {
setlocale(LC_ALL, "Rus");
check();
return 0;
}