Advertisement
marto9119

Untitled

Jan 16th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.37 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp // Note: actual namespace depends on the project name.
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int hours = int.Parse(Console.ReadLine());
  10.             int minutes = int.Parse(Console.ReadLine());
  11.             int hoursIn = int.Parse(Console.ReadLine());
  12.             int minutesIn = int.Parse(Console.ReadLine());
  13.             int hh = 0 , mm = 0 , allTime = 0 , timeCome = 0;
  14.  
  15.             allTime = (hours * 60) + minutes;
  16.             timeCome = (hoursIn * 60) + minutesIn;
  17.  
  18.             if (allTime >= timeCome )
  19.             {
  20.                 hh = (allTime - timeCome) / 60;
  21.                 mm = (allTime - timeCome) % 60;
  22.                
  23.                 if (hh == 0)
  24.                 {
  25.                     if (mm == 0 )
  26.                     {
  27.                         Console.WriteLine("On time");
  28.                     }
  29.                     else if (mm <=30)
  30.                     {
  31.                         Console.WriteLine("On time");
  32.                         Console.WriteLine($"{mm} minutes before the start");
  33.                     }
  34.                     else
  35.                     {
  36.                         Console.WriteLine("Early");
  37.                         Console.WriteLine($"{mm} minutes before the start");
  38.                     }
  39.                 }
  40.                 else
  41.                 {
  42.                     if (mm < 10)
  43.                     {
  44.                         Console.WriteLine("Early");
  45.                         Console.WriteLine($"{hh}:0{mm} hours before the start");
  46.                     }
  47.                     else
  48.                     {
  49.                         Console.WriteLine("Early");
  50.                         Console.WriteLine($"{hh}:{mm} hours before the start");
  51.                     }
  52.                 }
  53.             }
  54.             else
  55.             {
  56.                 hh = (timeCome -allTime) / 60;
  57.                 mm = (timeCome -allTime) % 60;
  58.                
  59.                 if (hh == 0)
  60.                 {
  61.                     Console.WriteLine("Late");
  62.                     Console.WriteLine($"{mm} minutes after the start");
  63.                 }
  64.                 else
  65.                 {
  66.                     Console.WriteLine("Late");
  67.                     Console.WriteLine($"{hh}:{mm} hours after the start");
  68.                 }
  69.             }
  70.  
  71.         }
  72.     }
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement