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

238333b5cfb7477a690210cda15cd01b #130

Open
wants to merge 1 commit 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
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"files.associations": {
"xstring": "cpp",
"ostream": "cpp",
"iostream": "cpp"
}
}
19 changes: 19 additions & 0 deletions Apartamento.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include "Imovel.hpp"
#include "Cliente.hpp"
#include "Apartamento.hpp"

Apartamento::Apartamento(){
apartamento = new Imovel();
}

void Apartamento::print() {
std::cout << "[Apartamento]" << endl;
Imovel::print();
std::cout << "Area: " << apartamento->getArea() << endl
<< " Quartos: " << apartamento->getComodo('q') << endl
<< " Banheiros: " << apartamento->getComodo('b') << endl
<< " Vagas: " << apartamento->getComodo('v') << endl
<< "Taxa de Comissão: " << apartamento->getComissao() * 100 << "%" << endl
<< "Valor Comissão: R$ " << fixed << setprecision(2) << apartamento->getComissao() << endl
<< "Valor de Venda: R$ " << fixed << setprecision(2) << apartamento->getValor() << endl;
}
34 changes: 4 additions & 30 deletions Apartamento.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,11 @@
using namespace std;

class Apartamento : public Imovel {

private:
Imovel* apartamento;
public:

double valor() {

double v = AREA * VALORm2;

return v;

}

double comissao() {

double c = AREA * VALORm2;

return c * 0.04;

}

void print() {

std::cout << "[Apartamento]" << endl;
Imovel::print();
std::cout << "Area: " << AREA << endl
<< " Quartos: " << Q << endl
<< " Banheiros: " << B << endl
<< " Vagas: " << V << endl
<< "Taxa de Comissão: " << 4 << "%" << endl
<< "Valor Comissão: R$ " << fixed << setprecision(2) << C << endl
<< "Valor de Venda: R$ " << fixed << setprecision(2) << Valor << endl;
}
Apartamento();
virtual void print();
};

#endif
19 changes: 19 additions & 0 deletions Casa.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include "Imovel.hpp"
#include "Cliente.hpp"
#include "Casa.hpp"

Casa::Casa(){
casa = new Imovel();
}

void Casa::print() {
std::cout << "[Casa]" << endl;
Imovel::print();
std::cout << "Area: " << casa->getArea() << endl
<< " Quartos: " << casa->getComodo('q') << endl
<< " Banheiros: " << casa->getComodo('b') << endl
<< " Vagas: " << casa->getComodo('v') << endl
<< "Taxa de Comissão: " << casa->getComissao() * 100 << "%" << endl
<< "Valor Comissão: R$ " << fixed << setprecision(2) << casa->getComissao() << endl
<< "Valor de Venda: R$ " << fixed << setprecision(2) << casa->getValor() << endl;
}
36 changes: 4 additions & 32 deletions Casa.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,11 @@
using namespace std;

class Casa : public Imovel {

private:
Imovel* casa;
public:

double valor() {

double v = AREA * VALORm2;

return v;

}

double comissao() {

double c = AREA * VALORm2;

return c * 0.06;

}

void print() {

std::cout << "[Casa]" << endl;
Imovel::print();
std::cout << "Area: " << AREA << endl
<< " Quartos: " << Q << endl
<< " Banheiros: " << B << endl
<< " Vagas: " << V << endl
<< "Taxa de Comissão: " << 6 << "%" << endl
<< "Valor Comissão: R$ " << fixed << setprecision(2) << C << endl
<< "Valor de Venda: R$ " << fixed << setprecision(2) << Valor << endl;

}

Casa();
virtual void print();
};

#endif
64 changes: 57 additions & 7 deletions Cliente.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,63 @@
#include <string>
#include "Cliente.hpp"

void Cliente::print(){
using namespace std;

Cliente::Cliente(){
nome = ' ';
endereco = ' ';
cidade = ' ';
UF = ' ';
cep = ' ';
telefone = ' ';
}

void Cliente::setName(string _nome){
nome = _nome;
}

void Cliente::setEndereco(string _endereco, string _cidade, string _estado, string _cep){
endereco = _endereco;
cidade = _cidade;
UF = _estado;
cep = _cep;
}
void Cliente::setTelefone(string numero){
telefone = numero;
}

std::cout << " Nome: " << NOME << endl
<< " Telefone: " << telefone << endl
<< " Endereço: " << endereco << endl
<< " Cidade: " << CIDADE << endl
<< " Estado: " << UF << endl
<< " CEP: " << cep << endl;
string Cliente::getEndereco(char v){
switch (v){
case 'e':
return endereco;
break;
case 'c':
return cidade;
break;
case 'u':
return UF;
break;
case 'p':
return cep;
break;
default:
break;
}
}

string Cliente::getNome(){
return nome;
}

string Cliente::getTelefone(){
return telefone;
}

void Cliente::print(){
cout << " Nome: " << getNome() << endl
<< " Telefone: " << getTelefone() << endl
<< " Endereço: " << getEndereco('e') << endl
<< " Cidade: " << getEndereco('c') << endl
<< " Estado: " << getEndereco('u') << endl
<< " CEP: " << getEndereco('p') << endl;
}
23 changes: 19 additions & 4 deletions Cliente.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,30 @@
using namespace std;

class Cliente {
public:
string NOME;
private:
string nome;
string endereco;
string CIDADE;
string cidade;
string UF;
string cep;
string telefone;
public:
Cliente();
void setName(string _nome);
// essa função seta todos os paremtros relacionados a localidade do cliente
void setEndereco(string _endereco, string _cidade, string _estado, string _cep);
void setTelefone(string numero);

void print();
// essa função retorna todos os parametros relacionados a localidade do cliente
// ela retorna um parametro por vez e ele varia de acordo com seu argumento
// e: retorna o endereço
// c: retorna a cidade
// u: retorna o estado
// p: retorna o cep
string getEndereco(char v);
string getNome();
string getTelefone();
void print();
};

#endif
21 changes: 21 additions & 0 deletions Cobertura.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#include "Imovel.hpp"
#include "Cliente.hpp"
#include "Cobertura.hpp"

using namespace std;

Cobertura::Cobertura(){
cobertura = new Imovel();
}

void Cobertura::print() {
std::cout << "[Cobertura]" << endl;
Imovel::print();
std::cout << "Area: " << cobertura->getArea() << endl
<< " Quartos: " << cobertura->getComodo('q') << endl
<< " Banheiros: " << cobertura->getComodo('b') << endl
<< " Vagas: " << cobertura->getComodo('v') << endl
<< "Taxa de Comissão: " << cobertura->getComissao() * 100 << "%" << endl
<< "Valor Comissão: R$ " << fixed << setprecision(2) << cobertura->getComissao() << endl
<< "Valor de Venda: R$ " << fixed << setprecision(2) << cobertura->getValor() << endl;
}
36 changes: 5 additions & 31 deletions Cobertura.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,11 @@
using namespace std;

class Cobertura : public Imovel {

public:

double valor() {

double v = AREA * VALORm2;

return v;

}

double comissao() {

double c = AREA * VALORm2;

return c * 0.10;

}

void print() {

std::cout << "[Cobertura]" << endl;
Imovel::print();
std::cout << "Area: " << AREA << endl
<< " Quartos: " << Q << endl
<< " Banheiros: " << B << endl
<< " Vagas: " << V << endl
<< "Taxa de Comissão: " << 10 << "%" << endl
<< "Valor Comissão: R$ " << fixed << setprecision(2) << C << endl
<< "Valor de Venda: R$ " << fixed << setprecision(2) << Valor << endl;
}
private:
Imovel* cobertura;
public:
Cobertura();
virtual void print();
};

#endif
Loading