坐标判断问题
#include <cstdio>
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
double x, y;
cin >> x >> y;
if(x > 0 && y > 0) printf("Q1");
else if(x == 0 && y != 0) printf("Eixo Y");
else if(x < 0 && y > 0) printf("Q2");
else if(x < 0 && y < 0) printf("Q3");
else if(x > 0 && y < 0) printf("Q4");
else if(y == 0 && x != 0) printf("Eixo X");
else printf("Origem");
return 0;
}