#include <iostream>#include <clocale>#include <cstdlib>using namespace std;void main(){ setlocale(LC_ALL, ""); int x, y; cout << "Введите X и Y =>"; cin >> x >> y; if (x == 0 || y == 0) { cout << "\nНе используйте 0!\n"; system("Pause"); exit(1); } if (x > 0 && y > 0) cout << "\nПервая четверть\n"; else if (x < 0 && y > 0) cout << "\nВторая четверть\n"; else if (x < 0 && y < 0) cout << "\nТретья четверть\n"; else if (x > 0 && y < 0) cout << "\nЧетвертая четверть\n"; system("Pause");}