diff --git a/Src/BootCamp.Chapter/Program.cs b/Src/BootCamp.Chapter/Program.cs index dc9c6bf6e..312a87996 100644 --- a/Src/BootCamp.Chapter/Program.cs +++ b/Src/BootCamp.Chapter/Program.cs @@ -6,7 +6,13 @@ class Program { static void Main(string[] args) { - Console.WriteLine("Hello World!"); + Console.WriteLine("Welcome to Homework - Working with Variables and GitHub"); + Console.Write("\nPlease enter your name: "); + string name = Console.ReadLine(); + Console.Write("Now, enter your age: "); + int age = Convert.ToInt32(Console.ReadLine()); + + Console.WriteLine($"\nYour name is {name} and you have {age} old!.".ToUpper()); } } }