for (int i = 1; i <= 10; i++) // Loop from 1 to 10 if (i == 3) // If i is equal to 3, skip the rest of the loop body and continue with the next iteration continue ...