Clase Vendedor
Publicado por Francisco (11 intervenciones) el 30/11/2018 15:29:53
me pidieron diseñar esa clase pero ya me enrede alguien podría ayudarme?
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
/*DISEÑAR UNA CLASE VENDEDOR CON ATRIBUTOS :
NOMBRE Y UN ARREGLO LLAMADO "VENTAS" QUE CONTIENE EL TOTAL DE LAS VENTAS REALIZADAS POR
UN VENDEDOR DURANTE CADA UNO DE LOS 12 MESES DEL AÑO.
LOS METODOS CON LOS QUE SE DEBE TRABAJAR SON:
METODOS CONSTRUCTORES.
METODODO PARA CAPTURAR LAS VENTAS DEL USUARIO .
METODOS GET Y SET.
METODO PARA IMPRIMIR LAS VENTAS.
METODO QEU PERMITA OBTENER TOTAL DE VENTAS AL AÑO. */
public class Vendedor{
private String nombre;
double[] vendedor = {1,2,3,4,5,6,7,8,9,10,11,12};
//constructor sin parametros
public Vendedor (){}
//Constructor con parametros
public Vendedor(String nombre) {
this.nombre = nombre;
}
public void Capturar(){
}
}
Valora esta pregunta
0