0
C# break lesson
Careful, a small mistake has crept in. The output is from 1 - 5 not to 4 as written in text.Cheers
2 Respuestas
0
elaborate on the question. .
0
for(int I = 0;I <= 5;I++)
{
cw(I);
}
I think his talking about a common mistake where the programmer iterates through loop and forgets that it indexes from 0.