Skip to content

Instantly share code, notes, and snippets.

@ufebri
Created March 18, 2020 02:37
Show Gist options
  • Save ufebri/48c3ce5f45881cf45f481fb94ca6777a to your computer and use it in GitHub Desktop.
Save ufebri/48c3ce5f45881cf45f481fb94ca6777a to your computer and use it in GitHub Desktop.
public class PiramidCounter {
public static void main(String[] args) {
showPiramidCounter(5);
}
private static void showPiramidCounter(int n) {
int counter = 1;
for (int i = 1; i <= n; ++i) {
for (int o = 1; o <= i; ++o) {
System.out.print(counter + " ");
counter++;
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment