0
How to get space before 18 age in this C# code
I take output from the user about his age in int variable type but the age is comming attached with the Question. like this. Please Enter Your Age:18 I want space in front of 18. https://code.sololearn.com/cg3yTboua0WL/?ref=app
2 Respostas
+ 2
Put a space after the colon, so you have the statement below:
Console.Write("Please Enter Your Age: ");
0
Thank You Mr. Daemon Thread.