# 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
← Exercise 2 Exercise 4 →