Similar Posts

Subscribe
Notify of
3 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
ultrarunner
1 year ago

Maybe so?

public class Muster
{
  public static void main(String[] args)
  {
    int j = 9;
    while(j >= 0)
    {
      int i = j--;
      while(i >= 0)
        System.out.print(" " + i--);
      System.out.println();
    }
  }
}

Result:

 9 8 7 6 5 4 3 2 1 0
 8 7 6 5 4 3 2 1 0
 7 6 5 4 3 2 1 0
 6 5 4 3 2 1 0
 5 4 3 2 1 0
 4 3 2 1 0
 3 2 1 0
 2 1 0
 1 0
 0
Franky12345678
1 year ago
for (int i = 9; i >= 0; i--) {
	StringBuilder builder = new StringBuilder();
	for (int j = i; j >= 0; j--) {
    	builder.append(String.valueOf(j));
      	builder.append(" ");
    }
  	System.out.println(builder.toString());
}

(you would have to re-format the indent because GF destroys it again and again if I send it off)