-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
94 lines (77 loc) · 3.03 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
namespace Palindrome
{
public static class Program
{
public static void Main()
{
var dateStr = ReadDate();
if (!DateTime.TryParse(dateStr, out var dateResult))
{
Console.WriteLine("Неверный формат даты");
Console.WriteLine("===========================================================");
Console.WriteLine("Нажмите любую клавишу, чтобы выйти.");
Console.Read();
return;
}
var yearsStr = ReadYears();
if (!Int32.TryParse(yearsStr, out var yearsResult))
{
Console.WriteLine("Неверный формат кол-во лет");
Console.WriteLine("===========================================================");
Console.WriteLine("Нажмите любую клавишу, чтобы выйти.");
Console.Read();
return;
}
var result = GetDates(dateResult, yearsResult);
foreach (var r in result)
{
Console.WriteLine($"{r.Key} - {r.Value.ToString("dd/MM/yyyy")}");
}
Console.ReadKey();
}
private static string ReadDate()
{
Console.WriteLine("Введите дату в формате dd/MM/yyyy ,");
Console.WriteLine("где: dd текущий день, MM месяц в числовом формате, yyyy год");
Console.WriteLine("===========================================================");
return Console.ReadLine();
}
private static string ReadYears()
{
Console.WriteLine("Введите кол-во лет.");
Console.WriteLine("===========================================================");
return Console.ReadLine();
}
public static DateTime[] GetDatesArray(DateTime date, int yCount)
{
return GetDates(date, yCount).Select(s => s.Value).ToArray();
}
public static Dictionary<string, DateTime> GetDates(DateTime date, int yCount, string format = "ddMMyyyy")
{
int yearCap = date.Year + yCount;
Dictionary<string, DateTime> result = new Dictionary<string, DateTime>();
while (date.Year < yearCap)
{
var key = date.ToString(format);
if (IsPalindrome(key) && result.ContainsKey(key) == false)
{
result.Add(date.ToString(key), date);
}
date = date.AddDays(1);
}
return result;
}
private static bool IsPalindrome(string s)
{
int i = 0;
int j = s.Length - 1;
while (i < j)
{
if (s[i] != s[j]) return false;
i++;
j--;
}
return true;
}
}
}