The goal of this assignment is to make you a master of utilizing for loops. Complete all the for loop challenges on the paper. Please read each challenge carefully and make sure that your for loops display exactly what is asked. If you finish them all, try the bonus challenge.
Write a for loop to do each the following:
1. Display all numbers from 0 to 100
Write nested for loops (a for loop inside another for loop) to do the following:
1. Display this output:
2. Display the numbers 1 through 9 in a 3x3 square grid like this:
3. Display the numbers 1 through 100 in a 10x10 square grid.
4. Display the following output:
Write a for loop that counts down from 100 to 0. However, the for loop must start with for(int i = 0; and you may NOT have any code ABOVE your for loop.