using System; using System.Collections; using System.Collections.Generic; using System.Linq; public class Program{ public static void Main(){ List days = Enumerable.Range(1,31).ToList(); List _d = days.Select(s => GetDaySum(s)).ToList(); int overCount = _d.Where(w => w == 1 || w == 2 || w == 3 || w == 4 || w == 5 || w == 6 || w == 7 || w == 8 || w == 9 || w == 10 || w == 11 || w == 12) .Count(); int outCount = 0; var _out = new List(); _out.Add(new Out(2,29)); _out.Add(new Out(2,30)); _out.Add(new Out(2,31)); _out.Add(new Out(4,31)); _out.Add(new Out(6,31)); _out.Add(new Out(9,31)); _out.Add(new Out(11,31)); foreach (var o in _out){ if (o.Month == GetDaySum(o.Day)){ outCount++; } } Console.WriteLine(overCount - outCount); } public static int GetDaySum(int d){ if (d < 10) return d; string _d = d.ToString(); int ten = int.Parse(_d.Substring(0,1)); int one = int.Parse(_d.Substring(1,1)); return ten + one; } } public class Out{ public int Month { get; set; } public int Day { get; set; } public Out(int m, int d){ Month = m; Day = d; } }