Instructions

Write a program that displays the squares of the numbers from 1 to 10. Recall that the square of a number is just the number multiplied by itself. Demonstrate your knowledge of both looping structures by writing two procedures to do this. One procedure should be called, squareFor and the other should be called, squareDoWhile. Each procedure should take no arguments and return no values. Inside the procedure, simply display a message telling what kind of loop it is using and then use the appropriate loop to display the number, followed by its square.

When you finish writing these two procedures, write a main procedure that will call both squareFor and squareDoWhile to show that they work.

Be sure your program demonstrates good programming style (appropriate comments, identifier names, indenting, etc).

Although the output from your program is not required to look this way, it might look something like:

The squares using a for statement are:
1 1
2 4
3 9
4 16
5 25
6 36
7 49
8 64
9 81
10 100

The squares using a do...while statement are:
1 1
2 4
3 9
4 16
5 25
6 36
7 49
8 64
9 81
10 100

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.