Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active January 13, 2020 04:47
Show Gist options
  • Save uncoded-ro/54041928d5eb580adc75654578db45dc to your computer and use it in GitHub Desktop.
Save uncoded-ro/54041928d5eb580adc75654578db45dc to your computer and use it in GitHub Desktop.
class InstrContinue {
public static void main(String[] args) {
int i;
for (i = 0; i < 10; i++) {
System.out.print(i + " ");
if (i % 2 == 0)
continue;
System.out.print("\n");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment