# Exercise 7

Find average of even numbers from 529 to 1087.

# Instruction

Your for loop should start from 529.

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

# Hint

See Example 3 and Example 5.

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