-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArticulo.h
105 lines (89 loc) · 1.83 KB
/
Articulo.h
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
// Brenda Elena Saucedo González - A00829855
// 29 - Noviembre - 2020
#include<iostream>
#include<string>
using namespace std;
class Articulo {
// Atributos
private:
string nombreArt;
float precio;
int cantidad;
public:
// Constructor Default
Articulo();
// Constructor con Parametros
Articulo(string nom, float p, int cant);
// Metodos de Acceso
string getNombreArt();
float getPrecio();
int getCantidad();
// Metodos de Modificacion
void setNombreArt(string nom);
void setPrecio(float p);
void setCantidad(int cant);
void setTotal(float tot);
// Metodo para ver cada articulo del carrito
void carrito();
// Metodo para calcular el total a pagar por articulo
float total();
};
Articulo::Articulo() {
nombreArt = "N/A";
precio = 0;
cantidad = 0;
}
Articulo::Articulo(string nom, float p, int cant) {
nombreArt = nom;
if (p >= 0) {
precio = p;
}
else {
precio = 0;
}
if (cant >= 0) {
cantidad = cant;
}
else {
cantidad = 0;
}
}
string Articulo::getNombreArt() {
return nombreArt;
}
float Articulo::getPrecio() {
return precio;
}
int Articulo::getCantidad() {
return cantidad;
}
void Articulo::setNombreArt(string nom) {
nombreArt = nom;
}
void Articulo::setPrecio(float p) {
if (p >= 0) {
precio = p;
}
else {
precio = 0;
}
}
void Articulo::setCantidad(int cant) {
if (cant >= 0) {
cantidad = cant;
}
else {
cantidad = 0;
}
}
void Articulo::carrito() {
if (cantidad == 1) {
cout << " - " << cantidad << " articulo de " << nombreArt << " con un precio de $" << precio << endl;
}
else {
cout << " - " << cantidad << " articulos de " << nombreArt << " con un precio de $" << precio << " cada uno" << endl;
}
}
float Articulo::total() {
return precio*cantidad;
}