Advertisement
Saviaa

Assignment3

Jun 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2.  
  3. class MainClass {
  4.   public static void Main (string[] args) {
  5.  
  6.  DateTime todayDate = DateTime.Now;
  7.  string formattedDay = string.Format("{0:dddd}", todayDate);
  8.  
  9.  switch (formattedDay)
  10.  {
  11.    case "Saturday": Console.WriteLine("Yellow"); break;
  12.    case "Sunday": Console.WriteLine("Green"); break;
  13.    case "Friday": Console.WriteLine("Blue"); break;
  14.    case "Thursday": Console.WriteLine("Grey"); break;
  15.    case "Tuesday": Console.WriteLine("Red"); break;
  16.    case "Wednesday": Console.WriteLine("Orange"); break;
  17.    case "Monday" : Console.WriteLine("White"); break;
  18.  
  19. }
  20.  
  21.   }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement