-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefri.cpp
51 lines (45 loc) · 954 Bytes
/
refri.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
#include <iostream>
#include <string.h>
using namespace std;
class Refri{
private:
string ingredientes;
float preco;
int acucar;
public:
//set e get
void setIngredientes(string ingredientes){
this->ingredientes = ingredientes;
}
void setPreco(float pr){
preco = pr;
}
void setAcucar(int acucar){
this->acucar = acucar;
}
string GetIngredientes(){
return ingredientes;
}
float GetPreco(){
return preco;
}
int GetQuant(){
return acucar;
}
bool emEstoque ( ) {
return
(acucar > 0);
}
};
int main() {
Refri Coka;
Coka.setIngredientes("Agua, corante");
Coka.setPreco(12.50);
Coka.setAcucar(10);
cout << " Produto : " << Coka.GetIngredientes()<< endl ;
cout << " Preço : " << Coka.GetPreco() << " \n " ;
cout << " Estoque : " << Coka.GetQuant() << " \n " ;
if (Coka.emEstoque ( ))
cout << " Produto em estoque . " << " \n " ;
return 0;
}