+ 2
is it possible to use readline twotimes?
int age = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("You are {0} years old", age); string gender = Console.ReadLine()); Console.WriteLine("your gender is {0}",gender); its not working. give me reason pls. thank you.
3 odpowiedzi
+ 3
Hi, remove the extra ")" in the 2nd statemet, (); instead of ());
* you can use ReadLine as many times as you want.
+ 1
thank you
- 2
its so hard