PLEASE HELP!!!!i need to write a program to record, average, and display grade for a maximim class size of 15 students. display a menu of options to the user, such as: input grades, display grades, and display class average.
pooh2008 0 Newbie Poster
Recommended Answers
Jump to Post>>PLEASE HELP!!!!
Post code using code tags, include a description of the problem you're having, etc.
Jump to Postpost first couple error messages and identify the lines they refer to.
You need to determine the total somehow. One way is to loop through the array containing the grades after all data entry has been completed, adding each grade to a running total before dividing by the actual …
Jump to Post1) Put this:
int choice; bool more = true; while(more) { cout << "Enter a maximum of " << MAXSIZE << " values or 99999 to terminate\n"; cout << "Please select...\n"; cout <<"(1) Enter Grades\n"; cout <<"(2) Display Grades\n"; cout << "(4) Display Class Average\n"; cout <<"(3) …
All 9 Replies
n1337 29 Junior Poster in Training
Lerner 582 Nearly a Posting Maven
pooh2008 0 Newbie Poster
n1337 29 Junior Poster in Training
pooh2008 0 Newbie Poster
Lerner 582 Nearly a Posting Maven
hammerhead 19 Posting Whiz in Training
pooh2008 0 Newbie Poster
Lerner 582 Nearly a Posting Maven
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.