diff --git a/HelloWorld/HelloWorld.cs b/HelloWorld/HelloWorld.cs index 8168c805..434b8bcc 100644 --- a/HelloWorld/HelloWorld.cs +++ b/HelloWorld/HelloWorld.cs @@ -1,12 +1,58 @@ using System; -namespace HelloWorld + +public class Program { - class Program + public static void Main() { - static void Main(string[] args) - { - Console.WriteLine("Hello World!"); - } - } -} + + string adjective1 = ""; + string adjective2 = ""; + string adjective3 = ""; + string adjective4 = ""; + string adjective5 = ""; + string verbEndingInIng = ""; + string number = ""; + string pluralNoun1 = ""; + string pluralNoun2 = ""; + string pluralNoun3 = ""; + string pluralNoun4 = ""; + string pluralNoun5 = ""; + string relative = ""; + string verb1 = ""; + string verb2 = ""; + + Console.WriteLine("Enter a verb: "); + verb1 = Console.ReadLine(); + Console.WriteLine("Enter an adjective: "); + adjective1 = Console.ReadLine(); + Console.WriteLine("Enter a plural Noun: "); + pluralNoun1 = Console.ReadLine(); + Console.WriteLine("Enter an adjective: "); + adjective2 = Console.ReadLine(); + Console.WriteLine("Enter an verb ending in ing: "); + verbEndingInIng = Console.ReadLine(); + Console.WriteLine("Enter a verb: "); + verb2 = Console.ReadLine(); + Console.WriteLine("Enter a number: "); + number = Console.ReadLine(); + Console.WriteLine("Enter an adjective: "); + adjective3 = Console.ReadLine(); + Console.WriteLine("Enter a plural Noun: "); + pluralNoun2 = Console.ReadLine(); + Console.WriteLine("Enter a plural Noun: "); + pluralNoun3 = Console.ReadLine(); + Console.WriteLine("Enter a plural Noun: "); + pluralNoun4 = Console.ReadLine(); + Console.WriteLine("Enter a type of plural relative: "); + relative = Console.ReadLine(); + Console.WriteLine("Enter an adjective: "); + adjective4 = Console.ReadLine(); + Console.WriteLine("Enter an adjective: "); + adjective5 = Console.ReadLine(); + Console.WriteLine("Enter a plural Noun: "); + pluralNoun5 = Console.ReadLine(); + + Console.WriteLine("Come {0} at WALMART, where you`ll receive {1} discounts on all of your favorite brand name {2}. Our {3} and {4} associates are there to {5} you {6} hours a day. Here you will find {7} prices on the {8} you need. {9} for the moms, {10} for the kids and all the latest electronics for the {11}. So come on down to your {12} {13} WALMART where the {14} come first.", verb1, adjective1, pluralNoun1, adjective2, verbEndingInIng, verb2, number, adjective3, pluralNoun2, pluralNoun3, pluralNoun4, relative, adjective4, adjective5, pluralNoun5); + } +} \ No newline at end of file