-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProblema_1115.cpp
65 lines (54 loc) · 987 Bytes
/
Problema_1115.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
@autor: Victor E. B. Rodrigues;
@data: 04/07/2021;
@nome: Quadrante;
*/
#include <bits/stdc++.h>
using namespace std;
bool ehPositivo(double& x){
return x>0;
}
struct ParOrdenado{
double x;
double y;
char sobreEixo(){
if (x == 0 && y == 0)
return '2';
if (y == 0)
return 'X';
if (x == 0)
return 'Y';
return 'F';
}
int pertenceAoQuadrante(){
if(sobreEixo() != 'F')
return sobreEixo();
if(ehPositivo(x) && ehPositivo(y))
return 1;
if(ehPositivo(y) && !ehPositivo(x))
return 2;
if(!ehPositivo(y) && !ehPositivo(x))
return 3;
return 4;
}
};
int main() {
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
double x,y;
map<int, string> numQNomeQ = {
{1,"primeiro"},
{2,"segundo"},
{3,"terceiro"},
{4,"quarto"},
};
while(cin >> x >> y){
if(x == 0 || y == 0)
break;
ParOrdenado p1 = {x,y};
int quadrante = p1.pertenceAoQuadrante();
cout << numQNomeQ[quadrante] << endl;
}
return 0;
}