+ 1
how to write a C# code in which the program will ask users some questions
how to write a C# code in which the program will ask users some questions
1 Respuesta
+ 1
e.g.
string name;
Console.Write("What's your name?");
name = Console.ReadLine();
how to write a C# code in which the program will ask users some questions