# 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

See Example 3 and Example 5.

Last Updated: Apr 23, 2020, 7:17 PM