Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Written Assignment: Grade Average Program Design a grade average program that wi

ID: 3626821 • Letter: W

Question

Written Assignment: Grade Average Program

Design a grade average program that will produce the numerical grade average of test scores input by a user.

Your program should contain the following:
• You must use an Array as your data structure to store the input grades
• You must use a Looping structure to initialize the elements of your array to clear out system garbage.
• The user may input up to 5 test scores. Hint: This does not mean each user will input 5 scores. 3 scores may be entered for calculation.
• You must use a Looping structure to traverse the elements of your array to produce your calculation.

You are to submit, as a Microsoft Word Document, the following for this assignment:
1. Pseudocode

Remember to follow the guidelines of good program design. Make sure to use meaningful variable names and thoroughly comment each line of your code. You may only use techniques learned in Chapters 1 - 5.

Explanation / Answer

hi there u didn`t mention the language i made it in c++ Pleas rate #include using namespace std; void main() { double arr[100],sum=0; int count=0; cout