I need to apply a continue statement that will skip printing the first 10 values.
I already have my code
public class numbers {
public static void main(String[] args) {
for (int number=1; number <= 99; number++){
if (number % 2 == 0)
System.out.print(number + " " );
System.out.println();
}
}
}