| Menu × × Correct! Exercise:In the following loop, when the value is "4", jump directly to the next value. 
for (int i = 0; i < 10; i++) 
{
  if (i == 4) 
  {
    @(8);
  }
  Console.WriteLine(i);
}
 
for (int i = 0; i < 10; i++) 
{
  if (i == 4) 
  {
    continue;
  }
  Console.WriteLine(i);
}
 Not CorrectClick here to try again. Correct!Next ❯ | 
This will reset the score of ALL 58 exercises.
Are you sure you want to continue?