public static void Main(String[] args)
Console.WriteLine("Give me the name of a person:");
Console.WriteLine("Tell me a place you love to go.");
Console.WriteLine("Give me an adjective.");
Console.WriteLine("Now, I need a noun that is plural:");
Console.WriteLine("Another adjective?");
Console.WriteLine("Can I have another plural noun?");
Console.WriteLine("Give me a another place.");
Console.WriteLine("Now, an action verb:");
Console.WriteLine("Another plural noun:");
Console.WriteLine("One more plural noun.");
Console.WriteLine("Give me a noun.");
Console.WriteLine("Another action verb, please.");
Console.WriteLine("Another noun:");
Console.WriteLine("And finally, an adjective!");
input(out adjectiveThree);
Console.WriteLine("My Summer Trip");
Console.Write("Last summer, my mom and dad took me and " + person + " on a trip to \r\n" + place + ".");
Console.Write("The weather there is very " + adjective + "!");
Console.Write("Northern " + place + " has many " + plnoun + ", and \r\nthey make " + adjectiveTwo + " " + plnounTwo + " there. ");
Console.Write("Many people also go to " + place + " to " + actverb + " or \r\nsee the " + plnounThree + ". ");
Console.Write("The people that live there love to eat " + plnounFour + " and are \r\nvery proud of their big " + noun + ". ");
Console.Write("They also like to " + actverbTwo + " in the sun and \r\nswim in the " + nounTwo + "! ");
Console.Write("It was a really " + adjectiveThree + " trip!");
private static void input(out double result)
while (!double.TryParse(Console.ReadLine(), out result));
private static void input(out int result)
while (!int.TryParse(Console.ReadLine(), out result));
private static void input(out Boolean result)
while (!Boolean.TryParse(Console.ReadLine(), out result));
private static void input(out string result)
result = Console.ReadLine();