'F' → Fullscreen
Create a new C# program named 1-8-registration, starting empty.
CS8600 and CS8602 that this course never explains. If you see either one, your program is fine — it is in the wrong folder.Console.Write("Player name: ");string playerName = Console.ReadLine();
Console.WriteLine($"Welcome, {playerName}.");Player name: Maya Okonkwo [Enter]Welcome, Maya Okonkwo.Console.Write("Player name: ");string playerName = Console.ReadLine();
Console.Write("Team name: ");string teamName = Console.ReadLine();
Console.Write("Position: ");string position = Console.ReadLine();
Console.WriteLine();Console.WriteLine("=== TOURNAMENT REGISTRATION ===");Console.WriteLine($"Player: {playerName}");Console.WriteLine($"Team: {teamName}");Console.WriteLine($"Position: {position}");Player name: Maya Okonkwo [Enter]Team name: Ridge Valley [Enter]Position: Point Guard [Enter]
=== TOURNAMENT REGISTRATION ===Player: Maya OkonkwoTeam: Ridge ValleyPosition: Point GuardConsole.WriteLine();Console.WriteLine("=== TOURNAMENT REGISTRATION ===");Console.WriteLine($"Player: {playerName}");Console.WriteLine($"Team: {teamName}");Console.WriteLine($"Position: {position}");
// Ask for a school// Ask for a shirt size// Print a one-line sentence using all five answersConsole.Write("Jersey number: ");int jerseyNumber = Console.ReadLine();
Console.WriteLine($"Next season you could be {jerseyNumber + 1}.");Console.Write to Console.WriteLine and describe what moved.Console.Write("Name? ");string name = Console.ReadLine();Console.WriteLine($"Hello, {name}");DISPLAY("Name? ")name ← INPUT()DISPLAY("Hello, ")DISPLAY(name)INPUT() is the reference sheet's Console.ReadLine. It hands back what the user typed, and the arrow catches it.DISPLAY takes one value at a time and adds a space after it, so the sheet needs two lines where interpolation needs one.Your finished program should run like this.
Player name: Maya Okonkwo [Enter]Team name: Ridge Valley [Enter]Position: Point Guard [Enter]School: St. Edward [Enter]Shirt size: M [Enter]
=== TOURNAMENT REGISTRATION ===Player: Maya OkonkwoTeam: Ridge ValleyPosition: Point GuardSchool: St. EdwardShirt: M
Maya Okonkwo of Ridge Valley plays Point Guard for St. Edward in a size M shirt.Answer the following questions before submitting your work.
Console.ReadLine hands back if the user presses Enter without typing anything? Give a reason for your answer.Submit four things to the dropbox: