Skip to content

Instantly share code, notes, and snippets.

@Otumian-empire
Created January 15, 2019 15:18
Show Gist options
  • Save Otumian-empire/f331f83d266728ed756e8a594713355f to your computer and use it in GitHub Desktop.
Save Otumian-empire/f331f83d266728ed756e8a594713355f to your computer and use it in GitHub Desktop.
Write a program to output 0123401234
public class LoopTwice {
public static void main(String[] args) {
for (int i = 0; i < 2; i++) {
for (int x = 0; x < 5; x++) {
System.out.printf(x);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment