Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write a program that displays the squares of the numbers from 1 to 10. Recall th

ID: 3640576 • Letter: W

Question

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

Explanation / Answer

class SquareFunction { public void squareFor() { System.out.println("printing square uning for statement:"); for(int i = 1; i
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote