0
I am stuck
Break loops
9 Answers
+ 2
Thank you it worked "AKC" and to others my gratitude is stretched for the knowledgeable contributions đ thank you 
+ 1
Break and continue loops to be exact please help 
+ 1
break exits a loop and continue jumps over all following lines and start with the next round of the loop
+ 1
Thanks I'll check on it 
+ 1
continue passes control to the loops evaluation condition to be precise
+ 1
I'll do a follow up on your question 
+ 1
for( int x=0; x<99; x++)........?
........? (x%2 !=0)
.................?
Console.WriteLine(x);
} how do I get this code to work :-( help 
+ 1
should be
{
if
continue;
it would help to see the task 
+ 1
specifically where... will be glad to help you







