Spocoman

08. On Time for the Exam

Nov 17th, 2021 (edited)
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.83 KB | None | 0 0
  1. using System;
  2.  
  3. namespace OnTimefortheExam
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int hourExam = int.Parse(Console.ReadLine());
  10.             int minuteExam = int.Parse(Console.ReadLine());
  11.             int hoursStudent = int.Parse(Console.ReadLine());
  12.             int minuteStudent = int.Parse(Console.ReadLine());
  13.             int examMinutes = hourExam * 60 + minuteExam;
  14.             int studentMinutes = hoursStudent * 60 + minuteStudent;
  15.             int timeDiff = studentMinutes - examMinutes;
  16.  
  17.             if (timeDiff > 0)
  18.             {
  19.                 Console.WriteLine("Late");
  20.                 if (timeDiff < 60)
  21.                 {
  22.                     Console.WriteLine($"{timeDiff} minutes after the start");
  23.                 }
  24.                 else
  25.                 {
  26.                     Console.WriteLine($"{timeDiff / 60}:{timeDiff % 60:00} hours after the start");
  27.                 }
  28.             }
  29.  
  30.             else if (timeDiff == 0)
  31.             {
  32.                 Console.WriteLine("On time");
  33.             }
  34.  
  35.             else
  36.             {
  37.                 timeDiff = Math.Abs(timeDiff);
  38.                 if (timeDiff <= 30)
  39.                 {
  40.                     Console.WriteLine("On time");
  41.                     Console.WriteLine($"{timeDiff} minutes before the start");
  42.                 }
  43.                 else
  44.                 {
  45.                     Console.WriteLine("Early");
  46.                     if (timeDiff < 60)
  47.                     {
  48.                         Console.WriteLine($"{timeDiff} minutes before the start");
  49.                     }
  50.                     else
  51.                     {
  52.                         Console.WriteLine($"{timeDiff / 60}:{timeDiff % 60:00} hours before the start");
  53.                     }
  54.                 }
  55.             }
  56.         }
  57.     }
  58. }
Add Comment
Please, Sign In to add comment