Choose Category
using System; namespace forgetCode{ class Program { static void Main(string[] args) { DateTime now = DateTime.Today; for (int i = 0; i < 12; i++) { Console.WriteLine(now.ToString("MMMM")); now = now.AddMonths(1); } } }}