+ 1
What is the problem?
6 Answers
+ 3
salah đhappy coding!đ
https://www.sololearn.com/learn/CSharp/2596/
+ 3
also.. I'm not sure of the purpose to have Console.Readkey () within the for loop... if you are trying to prevent the window from closing.. I would run either in debug mode on your compiler.. or put the statement outside the for loop... unless your asking for input.. at least in SL it's not needed... from my experience. hope this helps :)
+ 2
c# is case sensitive. use of commas vs semicolon. ....the syntax for a for loop...
example
for (int i = 0; i < 5; i++)
{
// code goes here
}
+ 1
it's still unworkable
+ 1
it's work
https://code.sololearn.com/crj1yyi66oYZ/?ref=app
the wrong is in the basic codes
0
it basically works....there is still an exception. .. for SL you need to remove the Console.Readkey ()...
in a program like Visual Studio.. this line would be fine..