Using a do while Loop Summary In this lab, you work with the same Java program you worked with in Labs 5-1 and 5-3. As in those earlier labs, the completed program should print the numbers O through 10, along with their values multiplied by 2 and by 10. However, in this lab you should accomplish this using a do while loop. Instructions 1.Ensure the file named NewestMultiply.java is open. 2. Write a do while loop that uses the loop control variable to take on the values O through 10. 3. In the body of the loop, multiply the value of the loop control variable by 2 and by 10. 4. Execute the program by clicking Run and verify that the output is correct. Grading When you have completed your program, click the Submit button to record your score. NewestMultiply.java 1 // NewestMultiply.java - This program prints the numbers through 10 along 2 // with these values multiplied by 2 and by 10. 3 // Input: None. 4// Output: Prints the numbers through 10 along with their values multiplied by 2 and by 10. 5 6 7 public class NewestMultiply 8 { 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 public static void main(String args[]) { String headl= "Number: "; String head2 = "Multiplied by 2: "; String head3= "Multiplied by 10: "; int numberCounter; // Numbers int by Ten; int by Two; final int NUM_LOOPS= 10; // Constant used to control loop. through 10. // Stores the number multiplied by 10. // Stores the number multiplied by 2. // This is the work done in the housekeeping() method System.out.println("0 through 10 multiplied by 2 and by 10" + "\n"); // This is the work done in the detailLoop() method // Write do while loop // End of do while loop. // This is the work done in the endOf Job() method System.exit(0); } // End of main() method. 29 30} // End of NewestMultiply class. 31 32 I

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question
3
Using a do while Loop
Summary
In this lab, you work with the same Java program you
worked with in Labs 5-1 and 5-3. As in those earlier labs,
the completed program should print the numbers O
through 10, along with their values multiplied by 2 and by
10. However, in this lab you should accomplish this using a
do while loop.
Instructions
1.Ensure the file named NewestMultiply.java is open.
2. Write a do while loop that uses the loop control
variable to take on the values O through 10.
3. In the body of the loop, multiply the value of the loop
control variable by 2 and by 10.
4. Execute the program by clicking Run and verify that
the output is correct.
Grading
When you have completed your program, click the Submit
button to record your score.
==
▬▬
NewestMultiply.java
1 // NewestMultiply.java
2 // with these values multiplied by 2 and by 10.
3 // Input: None.
4 // Output: Prints the numbers through 10 along with their values multiplied by 2 and by 10.
5
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
W
6
7 public class NewestMultiply
8 {
9
This program prints the numbers through 10 along
Q Search
public static void main(String args[])
{
String head1 = "Number: ";
String head2 = "Multiplied by 2: ";
String head3= "Multiplied by 10:
int numberCounter; // Numbers
int by Ten;
";
through 10.
// Stores the number multiplied by 10.
int by Two;
// Stores the number multiplied by 2.
final int NUM_LOOPS = 10; // Constant used to control loop.
// This is the work done in the housekeeping() method
System.out.println("0 through 10 multiplied by 2 and by 10" + "\n");
// This is the work done in the detailLoop() method
// Write do while loop
// End of do while loop.
// This is the work done in the endOfJob() method
System.exit(0);
} // End of main() method.
29
30} // End of NewestMultiply class.
31
32
HOL
I
*
B
a s
> Te
dx
Transcribed Image Text:3 Using a do while Loop Summary In this lab, you work with the same Java program you worked with in Labs 5-1 and 5-3. As in those earlier labs, the completed program should print the numbers O through 10, along with their values multiplied by 2 and by 10. However, in this lab you should accomplish this using a do while loop. Instructions 1.Ensure the file named NewestMultiply.java is open. 2. Write a do while loop that uses the loop control variable to take on the values O through 10. 3. In the body of the loop, multiply the value of the loop control variable by 2 and by 10. 4. Execute the program by clicking Run and verify that the output is correct. Grading When you have completed your program, click the Submit button to record your score. == ▬▬ NewestMultiply.java 1 // NewestMultiply.java 2 // with these values multiplied by 2 and by 10. 3 // Input: None. 4 // Output: Prints the numbers through 10 along with their values multiplied by 2 and by 10. 5 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 W 6 7 public class NewestMultiply 8 { 9 This program prints the numbers through 10 along Q Search public static void main(String args[]) { String head1 = "Number: "; String head2 = "Multiplied by 2: "; String head3= "Multiplied by 10: int numberCounter; // Numbers int by Ten; "; through 10. // Stores the number multiplied by 10. int by Two; // Stores the number multiplied by 2. final int NUM_LOOPS = 10; // Constant used to control loop. // This is the work done in the housekeeping() method System.out.println("0 through 10 multiplied by 2 and by 10" + "\n"); // This is the work done in the detailLoop() method // Write do while loop // End of do while loop. // This is the work done in the endOfJob() method System.exit(0); } // End of main() method. 29 30} // End of NewestMultiply class. 31 32 HOL I * B a s > Te dx
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Types of Loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT