Write an algorithm to find the sum of the given sequence. SUM = 20 + 25 + 30 + 35 + 40 + 45 + 50 + 55 + 60

The sum of a given sequence Problem Statement: Given a sequence: 20, 25, 30, 35, 40, 45, 50, 55, 60, calculate the sum. Algorithm: Start Initialize a variable sum to 0. Add each number in the sequence to sum: Add 20 to sum. Add 25 to sum. Add 30 to sum. Add 35 to sum. … Read more