public static void Main(String[] args)
Console.WriteLine("My Summer Trip");
Console.WriteLine("Enter a someone's name");
Console.WriteLine("Enter a place (ie.state)");
Console.WriteLine("Enter an adjective that describes the weather");
Console.WriteLine("Enter a plural noun that the place has many of");
Console.WriteLine("Enter an adjective");
Console.WriteLine("Enter another plural noun that they make there");
Console.WriteLine("Enter a different place");
Console.WriteLine("Enter an action verb");
Console.WriteLine("Enter a plural noun");
Console.WriteLine("Enter a plural noun (ie.food)");
Console.WriteLine("Enter a noun");
Console.WriteLine("Enter an action verb (something people like to do in the sun)");
Console.WriteLine("Enter something you swim in");
Console.WriteLine("Enter an adjective that describes the trip");
Console.WriteLine("Last summer, my mom and dad took me and " + name + " on a trip to " + place + "");
Console.WriteLine("The weather there is very " + adjective + "!");
Console.WriteLine("Northern " + place + " has many " + pluralnoun + ", and they make " + adjective2 + " " + pluralnoun2 + " there.");
Console.WriteLine("Many people also go to " + place2 + " to " + actionverb + " or see the " + pluralnoun3 + ".");
Console.WriteLine("The people that live there love to eat " + pluralnoun4 + " and are very proud of their big " + noun + ".");
Console.WriteLine("They also like to " + actionverb2 + " in the sun and swim in the " + noun2 + "!");
Console.WriteLine("It was a really " + adjective3 + " !");
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();