# Exercise 6

Find average of odd numbers from 438 to 871, inclusive.

# Instruction

Your for loop should start from 438.

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

# Hint

See Example 3 and Example 5.

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