Teo_Yanchev

1.DaysOfWeek - C# Fundamentals

Sep 6th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Arrays___Radi_Atanasov
  4. {
  5. class DaysOfTheWeek
  6. {
  7. static void Main(string[] args)
  8. {
  9. string[] daysOfTheWeek = new string[] { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" };
  10.  
  11. int n = int.Parse(Console.ReadLine());
  12.  
  13. if (1 <= n && n <=7)
  14. {
  15. Console.WriteLine(daysOfTheWeek[n - 1]);
  16. }
  17. else
  18. {
  19. Console.WriteLine("Invalid day!");
  20. }
  21. }
  22. }
  23. }
  24.  
Add Comment
Please, Sign In to add comment