GatoBooster

Gym TestCliente

Apr 7th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. public class TestCliente
  2. {
  3.     public static void main(String args[])
  4.     {
  5.       Cliente cli = new Cliente("17546123-8","Florencia","Josefa",54,18000,5,'F',true);
  6.    
  7.       cli.imprimirCliente();
  8.    
  9.       cli.rebajarMensualidad(0.1);
  10.    
  11.       System.out.println("Nueva Mensualidad "+ cli.getValor());
  12.    
  13.       System.out.println("Horas Disponibles "+ cli.obtenerHorasDisponibles(10));
  14.    
  15.       cli.imprimirCliente();
  16.     }  
  17. }
Add Comment
Please, Sign In to add comment