Cabana_Mario_Ariel_F

Clase Ejercicio4- TPN°5 - Grupo02

May 11th, 2022 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.61 KB | None | 0 0
  1. package ar;
  2.  
  3. public class Menu {
  4.     public static void main(String[] args) {
  5.         System.out.println("============= Ejercicio 4 =============");
  6.         Cuenta_Corriente cuenta= new Cuenta_Corriente();
  7.         System.out.println("Cuenta Corriente Iniciada: "+cuenta.getSaldo());
  8.             try {
  9.                 Thread.sleep(50);
  10.                 Deposit dsp= new Deposit(cuenta);
  11.                 dsp.start();
  12.                
  13.                 Thread.sleep(100);
  14.                 Extrac extr= new Extrac(cuenta);
  15.                 extr.start();
  16.                
  17.                 Thread.sleep(4000);
  18.                 System.out.println("El saldo es:"+ cuenta.getSaldo());
  19.                
  20.             } catch (InterruptedException e) {
  21.                 e.printStackTrace();
  22.             }
  23.         }
  24. }
Add Comment
Please, Sign In to add comment