-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gerente.hpp
37 lines (27 loc) · 857 Bytes
/
Gerente.hpp
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
#ifndef GERENTE_HPP
#define GERENTE_HPP
#include <iostream>
#include <iomanip>
using namespace std;
double ValorBONIFICACAO = 15.0;
class Gerente {
public:
double SalarioBase; // valor mínimo recebido pelo funcionário
string IDADE;
string nome;
int rgFunc;
double bonificacao;
void print() {
cout << "[Funcionario]" << endl
<< "[Gerente]" << endl
<< " Nome: " << nome << endl
<< " Idade: " << IDADE << endl
<< " RGFunc: " << rgFunc << endl
<< " SalarioBase: R$ " << fixed << setprecision(2) << SalarioBase <<endl;
}
double calcula_BONIFICACAO_GERENTE(int numTOTALVendas){
double x;
return numTOTALVendas*ValorBONIFICACAO;
}
};
#endif