+ 6
How to make this code running? Please help me.
3 Antworten
+ 21
Yes Daniel C is correct👍you forgot ";" at ending
+ 4
1) In C#, your lines of code need to end in semicolons (;). This is needed on lines 14, 15, and 17 in your code.
2) The variable "name = Console.ReadLine()" was not given a type. It needs to be "string name = Console.ReadLine()"
+ 2
Thanks a lot guys you really helped me !!! 😊😊