SalonBelleza.java 4.74 KB
Newer Older
Cesar Giulano Gonzalez Maqueda committed
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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
import java.util.InputMismatchException;

import java.util.Scanner;

class Cliente{
    /*
    * Clase que crea un cliente y le asigna un numero random de visitas.
    * */
    private String nombre;
    private String ruc;
    private int numVisita;

    public String getRuc() {
        return ruc;
    }

    public void setRuc(String ruc) {
        this.ruc = ruc;
    }

    public Cliente(String nombre, String ruc) {
        this.nombre = nombre;
        this.ruc = ruc;
        this.numVisita = (int)(Math.random()*125);
    }

    public String getNombre() {
        return nombre;
    }

    public void setNombre(String nombre) {
        this.nombre = nombre;
    }

    public int getNumVisita() {
        return numVisita;
    }

    public void setNumVisita(int numVisita) {
        this.numVisita = numVisita;
    }

    public void addVisita(){
        numVisita++;
    }
}

class Descuento{
    /*
    * Clase que representa el descuento de cada cliente, tiene como paramentros el cliente del cual
    * es el descuento y define su descuento por su cantidad de visitas.
     */
    private String tipo;
    private Cliente cliente;

    public String getTipo() {
        return tipo;
    }

    public void setTipo(String tipo) {
        this.tipo = tipo;
    }

    public Descuento(Cliente cliente){
        this.cliente = cliente;
        if(cliente.getNumVisita()>=100){
            this.tipo = "premium";
        }else if(cliente.getNumVisita()>=50){
            this.tipo = "oro";
        }else if(cliente.getNumVisita()>=20){
            this.tipo = "plata";
        }else{
            this.tipo = "";
        }
    }
}



class Visita{
    /*
    * Clase que administra cada visita de un cliente y provee un factura por visita.
    * */
    private double gastoProductos;
    private double gastoServicios;
    private Descuento descuento;
    private Cliente cliente;

    public Visita(double gastoProductos, double gastoServicios, Cliente cliente, Descuento descuento){
        this.gastoProductos = gastoProductos;
        this.gastoServicios = gastoServicios;
        this.cliente = cliente;
        this.descuento = descuento;
    }

    public void vistaCliente(){
        cliente.addVisita();
        System.out.println(
                "El cliente ha visitado el local "+ cliente.getNumVisita() + " veces."
        );
    }

    public void calcularFactura(){
        double montoACobrar;
        String extraInfo = "";
        switch (descuento.getTipo()){
            case "premium":
                montoACobrar = (gastoServicios+gastoProductos)*80/100;
                extraInfo = "Se aplico descuento premium";
                break;
            case "oro":
                montoACobrar = (gastoServicios+gastoProductos)*85/100;
                extraInfo = "Se aplico descuento oro";
                break;
            case "plata":
                montoACobrar = (gastoServicios+gastoProductos)*90/100;
                extraInfo = "Se aplico descuento plata";
                break;
            default:
                montoACobrar = (gastoServicios+gastoProductos);
        }
        System.out.println("Salon de Belleza X\n Nombre y Apellido: "+cliente.getNombre()
                + "\nRUC: " + cliente.getRuc()
                + "\nMonto A Cobrar: " + montoACobrar + " $\n"
                + extraInfo);
    }

    public double getGastoProductos() {
        return gastoProductos;
    }

    public void setGastoProductos(double gastoProductos) {
        this.gastoProductos = gastoProductos;
    }

    public double getGastoServicios() {
        return gastoServicios;
    }

    public void setGastoServicios(double gastoServicios) {
        this.gastoServicios = gastoServicios;
    }
}

public class SalonBelleza {

    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        String nombreCliente="";
        String ruc = "";
        double gastoProductos=0;
        double gastoServicios=0;
        try {
            System.out.println("Ingrese el nombre del cliente: ");
            nombreCliente = in.nextLine();
            System.out.println("Ingrese el RUC del cliente: ");
            ruc = in.nextLine();
            System.out.println("Ingrese los gastos en productos de la visita: ($)");
            gastoProductos = in.nextDouble();
            System.out.println("Ingrese los gastos en servicios de la visita: ($)");
            gastoServicios = in.nextDouble();
        }catch (InputMismatchException e) {
            System.out.println("Formato de entrada incorrecto");
        }
        Cliente cliente = new Cliente(nombreCliente, ruc);
        Descuento descuento = new Descuento(cliente);
        Visita visita = new Visita(gastoProductos, gastoServicios, cliente, descuento);
        visita.vistaCliente();
        visita.calcularFactura();

    }
}