# Exercise 4
Find sum of all the even numbers between 231 and 758, inclusive.
What does inclusive mean?
Inclusive means, boundary values 231 and 758 are included in the range. This means you will include 758 in the list.
# Instruction
Your for loop should start from 231.
for (int i = 231; // add code)
1
# Hint
← Exercise 3 Exercise 5 →