Advertisement
patrik5

BeerTime

Mar 23rd, 2014
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. using System;
  2.  
  3. class BeerTime
  4. {
  5. static void Main(string[] args)
  6. {
  7. Console.WriteLine("Enter time");
  8. DateTime dt = DateTime.Parse(Console.ReadLine());
  9. Console.WriteLine(dt.ToString("HH:mm tt"));
  10. if (dt.Hour < 13 && dt.Hour > 03)
  11. {
  12. Console.WriteLine("no beer time");
  13. }
  14. else
  15. {
  16. Console.WriteLine("beer time");
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement