Advertisement
spasnikolov131

Untitled

Oct 28th, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Demo
  6. {
  7. internal class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. int n = int.Parse(Console.ReadLine());
  12.  
  13. string[] day = {"Monday",
  14. "Tuesday",
  15. "Wednesday",
  16. "Thursday",
  17. "Friday",
  18. "Saturday",
  19. "Sunday"};
  20.  
  21. if (n <= 0 || n > 7)
  22. {
  23. Console.WriteLine("Invalid Day!");
  24. }
  25. Console.WriteLine(day[n-1]);
  26. }
  27. }
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement