Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please build a program with this psuedocode in Flowgorithm Module main () // A constant for the array size Constant Integer SIZE = 5 //

Please build a program with this psuedocode in Flowgorithm

Module main ()

// A constant for the array size

Constant Integer SIZE = 5

// An array initialized with values

Declare Integer numbers[SIZE] = 2, 4, 6, 8, 10

// A variable to hold the sum of the elements

Declare Integer sum

// Get the sum of the elements

Set sum = getTotal(numbers, SIZE)

// Display the sum of the array elements

Display The sum of the array elements is , sum

End Module

// The getTotal function accepts an Integer array and the arrays size as arguments.

// It returns the total of the array elements.

Function Integer getTotal(Integer array[], Integer arraySize)

// Loop counter

Declare Integer index

// Accumulator, initialized to 0

Declare Integer total = 0

// Calculate the total of the array elements

For index = 0 To arraySize - 1

Set total = total + array[index]

End For

// Return the total

Return total

End Function

The program should put out The sum of the array elements is 30

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database Administration The Essential Reference

Authors: Brian Laskey, David Kreines

1st Edition

1565925165, 978-1565925168

More Books

Students also viewed these Databases questions