133k views
0 votes
Integers firstnum and secondnum are read from input. Complete the outer while loop so the inner loop executes firstnum * (secondnum - 1) times. Ex: if the input is 6 2, then the output is:

A. 0 1 2 3 4 5
B. 1 2 3 4 5 6
C. 2 4 6 8 10 12
D. 3 6 9 12 15 18

User Googuez
by
7.3k points

1 Answer

2 votes

Final answer:

The outer while loop should be completed in such a way that the inner loop executes firstnum * (secondnum - 1) times. In the given example, the output should be the numbers from 0 to (6 * (2 - 1) - 1), which is 0 to 5.

Step-by-step explanation:

The outer while loop should be completed in such a way that the inner loop executes firstnum * (secondnum - 1) times. In the given example, the input is 6 2. So, the output should be the numbers from 0 to (6 * (2 - 1) - 1), which is 0 to 5.

Therefore, the correct option is A. 0 1 2 3 4 5.

User Gemse
by
7.3k points