83.6k views
5 votes
Which of the following code segments will print all the multiples of 5 between 1 and 100, not including 100?

A) for (int k=5; k<10e; k++)
if ((k % 5) e)
System.out . println (k) ;

B) for (int k=5; k<108; k
System.out.println (k);

C) for (int k=1l; k<20; ke+)
System. out.println(5 k);

D) l and lll only

E) land ll only

User Asnr
by
7.1k points

1 Answer

2 votes

Final answer:

Option C is the correct code segment that prints all multiples of 5 between 1 and 100, not including 100, by using a loop from 1 to 19 to print the multiples of 5 from 5 to 95.

Step-by-step explanation:

The question involves writing a piece of code that will print all the multiples of 5 between 1 and 100, not including 100. After evaluating the provided code segments, we can determine that the correct code for generating multiples of 5 within the specified range is denoted by option C) for (int k=1; k<20; k++) System.out.println(5*k);. This code snippet correctly initializes the variable k at 1 and then increments it by 1 on each iteration of the loop, where the actual multiple of 5 is printed by calculating 5*k. Therefore, as we loop from 1 to 19, we print the multiples of 5 from 5 to 95.

User Stampeder
by
7.4k points