Guest User

Untitled

a guest
Dec 14th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Console.WriteLine("Ingrese pago por hora");
  2. do
  3. {
  4.  
  5. try
  6. {
  7. pagoPorHora = int.Parse((Console.ReadLine()));
  8. }
  9.  
  10. catch (Exception ex)
  11. {
  12. Console.WriteLine("Debe ingresar un valor entero", ex.Message);
  13. pagoPorHora = 0;
  14. }
  15. } while (pagoPorHora == 0);
Add Comment
Please, Sign In to add comment