AcWing 662. 点的坐标
原题链接
简单
作者:
lemoba
,
2024-11-02 14:28:45
,
所有人可见
,
阅读 1
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
int main()
{
double x = 0, y = 0;
cin >> x >> y;
// cout << x << " " << y << endl;
if (x == 0 && y == 0)
{
cout << "Origem";
return 0;
}
if (x == 0 || y == 0)
{
if (x == 0)
{
cout << "Eixo Y";
return 0;
}
else
{
cout << "Eixo X";
return 0;
}
}
if (x > 0 && y > 0)
{
cout << "Q1";
return 0;
}
if (x < 0 && y > 0)
{
cout << "Q2";
return 0;
}
if (x < 0 && y < 0)
{
cout << "Q3";
return 0;
}
if (x > 0 && y < 0)
{
cout << "Q4";
return 0;
}
return 0;
}