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);
- auto const n{ 12 };
- int x[n]{}, count{};
- int i{};
- for (i = 0; i <= n - 1; i++) {
- while (true) {
- cout << "x[" << i << "] = ";
- cin >> x[i];
- if (cin.fail() || cin.peek() != '\n') {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Число було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- else {
- break;
- }
- }
- }
- cout << "Вихідний масив:" << endl;
- for (i = 0; i <= n - 1; i++) {
- cout << x[i] << " ";
- if (x[i] % 2 == 0 && x[i] % 3 == 0) {
- count += 1;
- }
- }
- cout << endl << "Кількість парних елементів, кратних трьом - " << count;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement