# Exercise 3

Find sum of all the odd numbers between 131 and 468, exclusive.

What does exclusive mean?

Exclusive means, boundary values 131 and 468 are not included in the range. This means you will not include 131 in the list.

# Instruction

Your for loop should start from 132.

for (int i = 132; // add code)
1

# Hint

See Example 3 and Example 5.

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