initialise a variable named Min and set its value equal to first item of array. start a for loop to iterate through every element of marks array. check if item

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 16PE
icon
Related questions
Question
  1. initialise a variable named Min and set its value equal to first item of array.
  2. start a for loop to iterate through every element of marks array.
  3. check if item<Min.
  4. if 4 is true: set Min = item, else continue
  5. after the loop will finish, Min variable will have lowest marks 

 

For total marks for all the students.

  1. initialise a variable named Sum and set its value equal to zero.
  2. start a for loop to iterate through every element of marks array.
  3. for every iteration, do sum = sum+item
  4. after the loop will finish, sum variable will have total marks of all students

The overall average.

  1. initialise a variable named Sum and set its value equal to zero. initialise another variable count =0.
  2. start a for loop to iterate through every element of marks array.
  3. for every iteration, do sum = sum+item, and increase count by 1.
  4. after the loop will finish, sum variable will have total marks of all students and count will have total count of marks.

5. to calculate average, do average = sum/count.

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage