-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProblema_1048.cpp
117 lines (93 loc) · 2.17 KB
/
Problema_1048.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
/*
@autor: Victor E. B. Rodrigues;
@data: 23/06/2021;
@nome: Aumento de Salário;
*/
#include <bits/stdc++.h>
#include <iomanip>
#include <limits>
using namespace std;
class Intervalo{
private:
double comeco;
double fim;
public:
Intervalo(){}
Intervalo(double comeco, double fim){
this->comeco = comeco;
this->fim = fim;
}
int getComeco(){
return comeco;
}
int getFim(){
return fim;
}
};
class IntervaloFechado:public Intervalo{
public:
IntervaloFechado(double x, double y) : Intervalo(x,y){}
bool contains(double& num){
if(num >= getComeco() && num <= getFim())
return true;
return false;
}
};
class IntervaloAberto:public Intervalo{
public:
IntervaloAberto(double x, double y) : Intervalo(x,y){}
bool contains(double& num){
if(num > getComeco() && num < getFim())
return true;
return false;
}
};
class IntervaloMisto:public Intervalo{
private:
bool direito;
public:
IntervaloMisto(double x, double 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;
}
};
double reajuste(double salario){
IntervaloFechado i1(0,400);
IntervaloMisto i2(400, 800, false);
IntervaloMisto i3(800, 1200, false);
IntervaloMisto i4(1200, 2000, false);
IntervaloMisto i5(2000, numeric_limits<double>::infinity(), false);
if(i1.contains(salario))
return salario+0.15*salario;
if(i2.contains(salario))
return salario+0.12*salario;
if(i3.contains(salario))
return salario+0.1*salario;
if(i4.contains(salario))
return salario+0.07*salario;
if(i5.contains(salario))
return salario+0.04*salario;
}
int main() {
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
double salario;
cin >> salario;
double salarioReajustado = reajuste(salario);
cout << setprecision(2) << fixed;
cout << "Novo salario: " << salarioReajustado << endl;
cout << "Reajuste ganho: " << salarioReajustado - salario << endl;
cout << setprecision(0) << fixed;
cout << "Em percentual: " << ((salarioReajustado/salario-1)*100)<< " %" << endl;
return 0;
}