-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProblema_1037.cpp
122 lines (100 loc) · 2.25 KB
/
Problema_1037.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
@autor: Victor E. B. Rodrigues;
@data: 22/06/2021;
@nome: Intervalo;
*/
#include <bits/stdc++.h>
#include <fstream>
using namespace std;
class Intervalo{
private:
int comeco;
int fim;
public:
Intervalo(){}
Intervalo(int comeco, int fim){
this->comeco = comeco;
this->fim = fim;
}
int getComeco(){
return comeco;
}
int getFim(){
return fim;
}
};
class IntervaloFechado:public Intervalo{
public:
IntervaloFechado(int x, int y) : Intervalo(x,y){}
bool contains(double& num){
if(num >= getComeco() && num <= getFim())
return true;
return false;
}
friend ostream& operator<<(ostream &os, IntervaloFechado& intf){
os << "[" << intf.getComeco() << "," << intf.getFim() << "]";
return os;
}
};
class IntervaloAberto:public Intervalo{
public:
IntervaloAberto(int x, int y) : Intervalo(x,y){}
bool contains(double& num){
if(num > getComeco() && num < getFim())
return true;
return false;
}
friend ostream& operator <<(ostream &os, IntervaloAberto& ia){
os << "(" << ia.getComeco() << "," << ia.getFim() << ")";
return os;
}
};
class IntervaloMisto:public Intervalo{
private:
bool direito;
public:
IntervaloMisto(int x, int y, bool direito) : Intervalo(x,y){
this->direito = direito;
}
bool contains(double& num){
if(direito){
if(num >= getComeco() && num < getFim())
return true;
}
else
if(num > getComeco() && num <= getFim())
return true;
return false;
}
friend ostream& operator <<(ostream &os, IntervaloMisto& im){
if(im.direito)
os << "[" << im.getComeco() << "," << im.getFim() << ")";
os << "(" << im.getComeco() << "," << im.getFim() << "]";
return(os);
}
};
int main() {
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
IntervaloFechado int1(0,25);
IntervaloMisto int2(25, 50, false);
IntervaloMisto int3(50, 75, false);
IntervaloMisto int4(75, 100, false);
double num;
cin >> num;
if(num < 0 || num > 100)
cout << "Fora de intervalo" << endl;
else{
cout << "Intervalo ";
if (int1.contains(num))
cout << int1 << endl;
else if(int2.contains(num))
cout << int2 << endl;
else if(int3.contains(num))
cout << int3 << endl;
else if(int4.contains(num))
cout << int4 << endl;
}
return 0;
}