static void Main(string[] args) { Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 1"); Console.ForegroundColor = ConsoleColor.White; Day1.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 2"); Console.ForegroundColor = ConsoleColor.White; Day2.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 3"); Console.ForegroundColor = ConsoleColor.White; Day3.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 4"); Console.ForegroundColor = ConsoleColor.White; Day4.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 5 (May take a while!)"); Console.ForegroundColor = ConsoleColor.White; Day5.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 6"); Console.ForegroundColor = ConsoleColor.White; Day6.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 7"); Console.ForegroundColor = ConsoleColor.White; Day7.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 8"); Console.ForegroundColor = ConsoleColor.White; Day8 day8 = new Day8(); day8.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 9"); Console.ForegroundColor = ConsoleColor.White; Day9 day9 = new Day9(); day9.Run(); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("DAY 10"); Console.ForegroundColor = ConsoleColor.White; Day10.Run(); }
static void Main(string[] args) { while (true) { Console.WriteLine("*******************"); Console.WriteLine("Advent of Code 2016"); Console.WriteLine("*******************"); Console.WriteLine(); Console.Write("Run day: "); int dayToRun = int.Parse(Console.ReadLine()); switch (dayToRun) { case 1: Day01.Run(); break; case 2: Day02.Run(); break; case 3: Day03.Run(); break; case 4: Day04.Run(); break; case 5: Day05.Run(); break; case 6: Day06.Run(); break; case 7: Day07.Run(); break; case 8: Day08.Run(); break; case 9: Day09.Run(); break; case 10: Day10.Run(); break; case 11: Day11.Run(); break; case 12: Day12.Run(); break; case 13: Day13.Run(); break; case 14: Day14.Run(); break; case 15: Day15.Run(); break; case 16: Day16.Run(); break; case 17: Day17.Run(); break; case 18: Day18.Run(); break; case 19: Day19.Run(); break; case 20: Day20.Run(); break; case 21: Day21.Run(); break; case 22: Day22.Run(); break; case 23: Day23.Run(); break; case 24: Day24.Run(); break; case 25: Day25.Run(); break; } Console.WriteLine(); } }
static void Main(string[] args) { Console.WriteLine("Welcome to Advent of Code 2016!"); bool running = true; //TODO: generic ways of doing input while (running) { Console.WriteLine("Please select your day to play or type (exit) to stop"); string input; bool inputValid = false; bool canConvertInput; int day; while (!inputValid) { input = Console.ReadLine(); if (!string.IsNullOrEmpty(input)) { canConvertInput = int.TryParse(input, out day); if (canConvertInput) { IDay thisDay = null; switch (day) { case 1: inputValid = true; thisDay = new Day1(); break; case 2: inputValid = true; thisDay = new Day2(); break; case 3: inputValid = true; thisDay = new Day3(); break; case 4: inputValid = true; thisDay = new Day4(); break; case 5: inputValid = true; thisDay = new Day5(); break; case 6: inputValid = true; thisDay = new Day6(); break; case 7: inputValid = true; thisDay = new Day7(); break; case 8: inputValid = true; thisDay = new Day8(); break; case 9: inputValid = true; thisDay = new Day9(); break; case 10: inputValid = true; thisDay = new Day10(); break; case 11: case 12: case 13: case 14: case 15: case 16: case 17: case 18: case 19: case 20: case 21: case 22: case 23: case 24: case 25: default: inputValid = false; Console.WriteLine("I don't know that day, try again"); break; } if (thisDay != null) { bool isAdvancedInputCorrect = false; string advancedInput = null; while (!isAdvancedInputCorrect) { Console.WriteLine("The simple (S) or the advanced (A) version?"); advancedInput = Console.ReadLine(); if (advancedInput.ToLower().Equals("simple") || advancedInput.ToUpper().Equals("S")) { isAdvancedInputCorrect = true; thisDay.RunSimple(); } else if (advancedInput.ToLower().Equals("advanced") || advancedInput.ToUpper().Equals("A")) { isAdvancedInputCorrect = true; thisDay.RunAdvanced(); } else { isAdvancedInputCorrect = false; Console.WriteLine("That's not what I asked!"); } } } } else { if (input.ToLower().Equals("exit")) { running = false; inputValid = true; } else { Console.WriteLine("Please input the day number or (exit)"); } } } } } Console.WriteLine("Press enter to shut down"); Console.ReadLine(); }