//force someone to type a star using System; class force_star { public static void Main() { bool failed = false; string a_star = ""; while(a_star != "*") { if(failed) Console.WriteLine("STOP FAILING!"); Console.WriteLine("Type a star. Do it, GOGOGO!"); a_star = Console.ReadLine(); Console.WriteLine("You typed: " + a_star); Console.WriteLine(); failed = true; } Console.WriteLine("Good Job."); } }