So it looks like you just need a counting sequence, but also need to enter a newline after so many numbers are printed. The first line has 4 numbers and on down to 1...so you could accomplish this with a loop that loops through 1-10...you then have a variable that represents the number of numbers you will print on this line...it starts at 4 so your for loop would check each time "if number=number_of_numbers_per_line" then print a carriage return and decrement the "number_of_numbers_per_line" variable...
You could do this again a second time, but the loop decrements and the number_of_numbers_per line increments.
Bookmarks