Advertisement
Spocoman

Cat Training Attendance

Jan 8th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.40 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CatTrainingAttendance
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int startHours = int.Parse(Console.ReadLine());
  10.             int checkHours = int.Parse(Console.ReadLine());
  11.             int checkMinutes = int.Parse(Console.ReadLine());
  12.             string dayOfWeek = Console.ReadLine();
  13.  
  14.             double bonusPoints = 0;
  15.  
  16.             if (checkHours < startHours && checkHours <= (startHours - 1))
  17.             {
  18.                 bonusPoints = 1.5;
  19.             }
  20.             else if (checkHours == startHours && checkMinutes <= 30)
  21.             {
  22.                 bonusPoints = 1;
  23.             }
  24.             else if ((checkHours == startHours && checkMinutes > 30) || checkHours <= (startHours + 4))
  25.             {
  26.                 bonusPoints = 0.5;
  27.             }
  28.             switch (dayOfWeek)
  29.             {
  30.                 case "Monday":
  31.                 case "Wednesday":
  32.                 case "Friday":
  33.                     bonusPoints += 0.6;
  34.                     break;
  35.                 case "Tuesday":
  36.                 case "Thursday":
  37.                 case "Saturday":
  38.                     bonusPoints += 0.8;
  39.                     break;
  40.                 case "Sunday":
  41.                     bonusPoints += 2;
  42.                     break;
  43.             }
  44.             Console.WriteLine($"{bonusPoints:F2}");
  45.         }
  46.     }
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement