Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <windows.h>
- using namespace std;
- int main()
- {
- SetConsoleOutputCP(1251);
- long long x{}, sum{ 0 }, product{ 1 };
- while (true) {
- cout << "Введіть будь-яке ціле число (для завершення програми ввеедіть 0): ";
- cin >> x;
- if (cin.fail()) {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Число було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- if (x == 0) {
- break;
- }
- sum += x;
- product *= x;
- }
- cout << "Сума введених чисел - " << sum << endl;
- cout << "Добуток введених чисел - " << product << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement