using System;
namespace ConsoleApp1
{
struct time
public int hour;
public int min;
public int sec;
};
class Program
static void Main(string[] args)
time t1; t1.hour = 18; t1.min = 45; t1.sec = 23;
time t2; t2.hour = 18; t2.min = 45; t2.sec = 24;
if (t1.hour < t2.hour) Console.WriteLine("Время t1 предшествует t2");
else if ((t1.hour == t2.hour)&&(t1.min < t2.min)) Console.WriteLine("Время t1 предшествует t2");
else if ((t1.hour == t2.hour) && (t1.min == t2.min) && (t1.sec < t2.sec)) Console.WriteLine("Время t1 предшествует t2");
else Console.WriteLine("Время t1 не предшествует t2");
}
using System;
namespace ConsoleApp1
{
struct time
{
public int hour;
public int min;
public int sec;
};
class Program
{
static void Main(string[] args)
{
time t1; t1.hour = 18; t1.min = 45; t1.sec = 23;
time t2; t2.hour = 18; t2.min = 45; t2.sec = 24;
if (t1.hour < t2.hour) Console.WriteLine("Время t1 предшествует t2");
else if ((t1.hour == t2.hour)&&(t1.min < t2.min)) Console.WriteLine("Время t1 предшествует t2");
else if ((t1.hour == t2.hour) && (t1.min == t2.min) && (t1.sec < t2.sec)) Console.WriteLine("Время t1 предшествует t2");
else Console.WriteLine("Время t1 не предшествует t2");
}
}
}