Advertisement
desislava_topuzakova

07. Working Hours

Oct 14th, 2023
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. int hour = int.Parse(Console.ReadLine()); //час
  2. string dayOfWeek = Console.ReadLine(); //ден от седмицата
  3.  
  4.  
  5. if (hour < 10 || hour > 18 || dayOfWeek == "Sunday")
  6. {
  7. //затворен: час < 10 или час > 18 или ден = неделя -> closed
  8. Console.WriteLine("closed");
  9. }
  10. else
  11. {
  12. //отворен: час -> [10;18] ден -> [пон; събота] -> open
  13. Console.WriteLine("open");
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement