0
Why is my code showing error
5 Answers
+ 3
1. Put everything under line 19 inside main function
2. Many syntax errors, refer to c# tutorial to fix them
3. For comparing variables use ==
if(s==s)
+ 3
https://code.sololearn.com/clgZ8CpYRCnP/?ref=app
Here you are Jadyn
+ 1
1. The three closing brackets in lines 15-17 should be at the end of the code.
2. Use Console.WriteLine() instead of ConsileWriteLine().
3. Change "if (s = s)" to "if (s == s)".
- 1
I don't understand
- 1
Please show me