public static void Main(String[] args)
queTitle = "My Summer Trip";
Console.WriteLine("Enter a person's name.");
Console.WriteLine("Enter a place.");
Console.WriteLine("Enter an adjective.");
Console.WriteLine("Enter a plural noun.");
Console.WriteLine("Enter another adjective.");
Console.WriteLine("Enter another plural noun.");
Console.WriteLine("Enter another place.");
Console.WriteLine("Enter an action verb.");
Console.WriteLine("Enter another plural noun.");
Console.WriteLine("Enter another plural noun.");
Console.WriteLine("Enter a noun.");
Console.WriteLine("Enter another action verb.");
Console.WriteLine("Enter another noun.");
Console.WriteLine("Finally, enter another adjective!");
Console.WriteLine(queTitle);
Console.WriteLine("Last summer, my mom and dad took me and " + quePerson + " on a trip to " + quePlace1 + "." + "The weather there is very " + queAdj1 + "!" + " Nothern " + quePlace1 + " has many " + quePlnoun1 + ", " + "and they make " + queAdj2 + " " + quePlnoun2 + " there" + "." + " Many people also go to " + quePlace2 + " to " + queActverb1 + " or see the " + quePlnoun3 + "." + " The people that live there love to eat " + quePlnoun4 + " and are very proud of their big " + queNoun1 + "." + " They also like to " + queActverb2 + " in the sun and swim in the " + queNoun2 + "!" + " It was a really " + queAdj3 + " 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();