using System; namespace PS1_Q3 { // // Problem Set 1, Question 3 // Written by Paul Hudak // September 19, 2006 // class PS1_Q3 { // // A "mad-lib" program. // [STAThread] static void Main(string[] args) { // display welcome message Console.WriteLine("Welcome to the Game of Mad-lib!\n"); // query user for each input Console.Write("Please input an adjective: "); string adjective = Console.ReadLine(); Console.Write("Now input a verb (past tense): "); string verb = Console.ReadLine(); Console.Write("Finally, input a noun: "); string noun = Console.ReadLine(); // display result Console.WriteLine("\n*** The {0} professor {1} my {2}, and I've never recovered. ***\n", adjective, verb, noun); } } }