Advertisement
vallec

Задача 26.10

Oct 26th, 2021
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TestSomeThings
  4. {
  5.     public class StartUp
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             try
  10.             {
  11.                 int num = int.Parse(Console.ReadLine());
  12.                 switch (num)
  13.                 {
  14.                     case 1:
  15.                         Console.WriteLine("Monday");
  16.                         break;
  17.                     case 2:
  18.                         Console.WriteLine("Tuesday");
  19.                         break;
  20.                     case 3:
  21.                         Console.WriteLine("Wednesday");
  22.                         break;
  23.                     case 4:
  24.                         Console.WriteLine("Thursday");
  25.                         break;
  26.                     case 5:
  27.                         Console.WriteLine("Friday");
  28.                         break;
  29.                     case 6:
  30.                         Console.WriteLine("Saturday");
  31.                         break;
  32.                     case 7:
  33.                         Console.WriteLine("Sunday");
  34.                         break;
  35.                     default:
  36.                         Console.WriteLine("Error");
  37.                         break;
  38.                 }
  39.             }
  40.             catch (Exception)
  41.             {
  42.                 Console.WriteLine("An error occurred! The input is not in the correct format!\n Please start the program and try again.");
  43.             }
  44.            
  45.            
  46.         }
  47.     }
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement