#include <iostream>
#include <cmath>
#include <Windows.h>
using namespace std;
int main()
{
SetConsoleCP(65001);
SetConsoleOutputCP(65001);
float x, y;
cout << "Input X: ";
cin >> x;
cout << "Input Y: ";
cin >> y;
if(sqrt(x * x + y * y) < 1 || abs(x) > 1 || abs(y) > 1){
cout << "Точка вне области";
}
else if( (x > 0 && y > 0) || (x < 0 && y < 0))
cout << "Точка внутри заштрихованной области";
else
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cmath>
#include <Windows.h>
using namespace std;
int main()
{
SetConsoleCP(65001);
SetConsoleOutputCP(65001);
float x, y;
cout << "Input X: ";
cin >> x;
cout << "Input Y: ";
cin >> y;
if(sqrt(x * x + y * y) < 1 || abs(x) > 1 || abs(y) > 1){
cout << "Точка вне области";
}
else if( (x > 0 && y > 0) || (x < 0 && y < 0))
cout << "Точка внутри заштрихованной области";
else
cout << "Точка вне области";
return 0;
}