1234567891011121314 |
- //2
- static void Main(string[] args)
- {
- Console.WriteLine("Введите первую дату в формате ДД.ММ.ГГГГ:");
- DateTime A = DateTime.ParseExact(Console.ReadLine(), "dd.MM.yyyy", null);
- Console.WriteLine("Введите вторую дату в формате ДД.ММ.ГГГГ:");
- DateTime B = DateTime.ParseExact(Console.ReadLine(), "dd.MM.yyyy", null);
- TimeSpan timeSpan = B - A;
- Console.WriteLine($"Количество дней между {A} и {B}: {timeSpan.Days}");
- }
|