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

How do you write a program that displays the squares of the numbers from 1 to 10

ID: 3623135 • Letter: H

Question

How do you 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.
Although the output from your program is not required to look this way, it might look something like the following two examples:

the squares that will be 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 that will be 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

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

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