Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

c61827f282943fa6d8e3b8d450515274 #190

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions Cliente.cpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
#include <iostream>
#include <string>
#include "Cliente.hpp"

void Cliente::print(){

std::cout << "[Cliente]" << endl
<< " Nome: " << NOME << endl
<< " Endereco: " << endereco << endl
<< " CEP: " << Cep << endl;

}
#include <iostream>
#include <string>
#include "Cliente.hpp"

void Cliente::print() const {
std::cout << "[Cliente]" << std::endl
<< " Nome: " << this->getNome() << std::endl
<< " Endereco: " << this->getEndereco() << std::endl
<< " CEP: " << this->getCep() << std::endl;
}
45 changes: 26 additions & 19 deletions Cliente.hpp
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
#ifndef CLIENTE_H
#define CLIENTE_H

#include <string>
using namespace std;

class Cliente{

public:

string NOME;
string endereco;
string Cep;
string AlturaDosPais;

void print(); // imprime na tela os dados de um cliente cadastrado

};

#ifndef CLIENTE_H
#define CLIENTE_H

#include <string>

class Cliente {
public:
Cliente(std::string NOME, std::string endereco, std::string Cep): _NOME(NOME), _endereco(endereco), _Cep(Cep) {}

std::string getNome() const{
return _NOME;
}
std::string getEndereco() const{
return _endereco;
}
std::string getCep() const{
return _Cep;
}
void print() const; // imprime na tela os dados de um cliente cadastrado

private:
std::string _NOME;
std::string _endereco;
std::string _Cep;
};

#endif
36 changes: 17 additions & 19 deletions Especialista.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,34 @@
#include "Funcionario.hpp"
#include "Cliente.hpp"

using namespace std;

double perc = 0.1;
double percWanda = 0.1;


class Especialista : public Funcionario {

public:
Especialista(double SalarioBase, std::string IDADE, std::string nome, int rgFunc, std::string especialidade):
Funcionario(SalarioBase, IDADE, nome, rgFunc), _especialidade(especialidade) {}

public:
string especialidade;

double comissao(double ValorVenda) {
double c = ValorVenda*perc;
return c;
}


void print() {
std::string getEspecialidade(){
return _especialidade;
}

std::cout << "[Especialista]" << endl;
Funcionario::print();
double comissao(double valorVenda) {
double c = valorVenda*perc;
return c;
}

void print() const {

std::cout << "[Especialista]" << std::endl;
Funcionario::print();

std::cout << " Nome: " << nome << endl
<< " SalarioBase: R$ " << fixed << setprecision(2) << SalarioBase <<endl;
std::cout << " Nome: " << this->getNome() << std::endl
<< " SalarioBase: R$ " << std::fixed << std::setprecision(2) << this->getSalarioBase() << std::endl;

}
}
private:
std::string _especialidade;
};

#endif
35 changes: 23 additions & 12 deletions Funcionario.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,35 @@
#include <iostream>
#include <iomanip>

using namespace std;

class Funcionario {
public:
double SalarioBase; // valor m�nimo recebido pelo funcion�rio
string IDADE;
string nome;
int rgFunc;
Funcionario(double SalarioBase, std::string IDADE, std::string nome, int rgFunc):
_SalarioBase(SalarioBase), _IDADE(IDADE), _nome(nome), _rgFunc(rgFunc) {}

void print() {
cout << "[Funcionario]" << endl
<< " Idade: " << IDADE << endl
<< " RGFunc: " << rgFunc << endl;
double getSalarioBase() const{
return _SalarioBase;
}
std::string getIdade() const{
return _IDADE;
}
std::string getNome() const{
return _nome;
}
int getRG() const{
return _rgFunc;
}

void print_oi(){
cout << "Tchau" << endl;
void print() const {
std::cout << "[Funcionario]" << std::endl
<< " Idade: " << this->getIdade() << std::endl
<< " RGFunc: " << this->getRG() << std::endl;
}

private:
double _SalarioBase; // valor minimo recebido pelo funcionario
std::string _IDADE;
std::string _nome;
int _rgFunc;
};

#endif
30 changes: 13 additions & 17 deletions Gerente.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,29 @@
#include <iostream>
#include <iomanip>

using namespace std;

double ValorBONIFICACAO = 15.0;
double valorBonificacao = 15.0;

class Gerente {
public:
double SalarioBase; // valor m�nimo recebido pelo funcion�rio
string IDADE;
string nome;
double SalarioBase; // valor minimo recebido pelo funcionario
std::string IDADE;
std::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;
void print() const {
std::cout << "[Funcionario]" << std::endl
<< "[Gerente]" << std::endl
<< " Nome: " << nome << std::endl
<< " Idade: " << IDADE << std::endl
<< " RGFunc:: " << rgFunc << std::endl
<< " SalarioBase: R$ " << std::fixed << std::setprecision(2) << SalarioBase << std::endl;
}

double calcula_BONIFICACAO_GERENTE(int numTOTALVendas){
double x;
return numTOTALVendas*ValorBONIFICACAO;
double calculaBonificacao(int numTotalVendas){
return numTotalVendas*valorBonificacao;
}

};

#endif
Expand Down
39 changes: 12 additions & 27 deletions Venda.hpp
Original file line number Diff line number Diff line change
@@ -1,42 +1,27 @@

#ifndef VENDA_HPP
#define VENDA_HPP

#include "Funcionario.hpp"
#include "Cliente.hpp"
#include "Especialista.hpp"

using namespace std;

class Venda{

class Venda {
public:
double VALOR;
string descricao;
Especialista esp;
string cliente;


void print() {

std::cout << "Especialista: ";
cout << esp.nome;

std::cout << " Cliente: ";
cout << cliente;
double VALOR;
std::string descricao;
Especialista* esp;
std::string cliente;

//std::cout << " : ";
//cout << cliente;
}
void print() const {

/*void print() {
std::cout << "Especialista: ";
std::cout << esp->getNome();

std::cout << "Especialista: ";
cout << esp.nome;
std::cout << " Cliente: ";
std::cout << cliente;

std::cout << " Cliente: ";
cout << cliente;
}*/
}
private:
};

#endif
Loading