Skip to content
Advertisement

confused about java looping

I just started learning programming and java is my first language. I’ve come across an exercise involving for loop, I’d like to know how the result is found:

JavaScript

the output is: 17

I know this is a silly basic question but I really need to understand how the result is 17.

Advertisement

Answer

In your loop :

  • the i starts at 0, so the first value is 0
  • it stops when i<5 is not true, so when i=5 it doesn’t loop, so the last value is 4

So iwill take the values:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement