Ответ:
#include <iostream>
int main()
{
setlocale(LC_ALL, "Russian");
float x;
float y;
std::cout << "Введите x: ";
std::cin >> x;
std::cout << "Введите y: ";
std::cin >> y;
if (x * x + y * y <= 1 or (0 <= x and x <= 1 and 0 <= y and y <= 1))
std::cout << "Точка в диапазоне";
}
else
std::cout << "Точка вне диапазона";
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
#include <iostream>
int main()
{
setlocale(LC_ALL, "Russian");
float x;
float y;
std::cout << "Введите x: ";
std::cin >> x;
std::cout << "Введите y: ";
std::cin >> y;
if (x * x + y * y <= 1 or (0 <= x and x <= 1 and 0 <= y and y <= 1))
{
std::cout << "Точка в диапазоне";
}
else
{
std::cout << "Точка вне диапазона";
}
}