EBK C++ FOR ENGINEERS AND SCIENTISTS
EBK C++ FOR ENGINEERS AND SCIENTISTS
4th Edition
ISBN: 8220100444968
Author: Bronson
Publisher: YUZU
bartleby

Videos

Textbook Question
Book Icon
Chapter 7, Problem 1PP

(Statistics) a. Write a C++ program that reads a list of double-precision grades from the keyboard into an array named grade. The grades are to be counted as they’re read, and entry is to be terminated when a negative value has been entered. After all grades have been input, your program should find and display the sum and average of the grades. The grades should then be listed with an asterisk (*) placed in front of each grade that’s below the average.

b. Extend the program written for Exercise 1a to display each grade and its letter equivalent, using the following scale:

B e t w e e n   90   a n d   100   =   A G r e a t e r   t h a n   o r   e q u a l   t o   80   a n d   l e s s   t h a n   90   =   B G r e a t e r   t h a n   o r   e q u a l   t o   70   a n d   l e s s   t h a n   80   =   C G r e a t e r   t h a n   o r   e q u a l   t o   60   a n d   l e s s   t h a n   70   =   D L e s s   t h a n   60   =   F

(a)

Expert Solution
Check Mark
Program Plan Intro

Program Plan:

  • Declaremax and count variables of int data type.
  • Declare sumand average variables of double data type
  • Declare an array grade[100] of double data type.
  • Use for loop to read all the array elements from the user.
  • Use if statementto check the negative value.
  • Calculatethe sum and average of all the user entered score.
  • Display the calculated results to the user.
  • Use for loop to calculate grades below the average.
  • Use if condition to find the grades below the average.
  • Display the grades below average by using the asterisk in the front of the grade(*).
  • int main() method function is used to perform all the tasks.

Program Description: The main purpose of the program is to read all scores from the user, storing the scores in the grade[] array, calculating the sum and average of all the entered elements and to display the grades below average by using the asterisk in the front of grade(*).

Explanation of Solution

Program code:

//including required header files
#include<iostream>
usingnamespacestd;
//main method
int main()
{
//declaring required variables
int max = 100, count =0;
double sum=0, average=0;
//Declaring the array to store value of grades
double grade[max];

cout<<"Enter scores and any negative number to terminate"<<endl;

//This loop will execute maximum of 100
//while loop
while(count<max){
//Reading inputs from user 
cin>>grade[count];
//if the number is negative then loop is terminated
if(grade[count]<0)

break;
//adding the entered sum
sum = sum + grade[count];
//increnting loop variable 
count++;
    }//end of while loop
//Calculating  average
average = sum/count;
//displaying Calculated results to the user
cout<<"Total of the scores: "<<sum<<endl;
cout<<"Average of the scores: "<<average<<endl;
cout<<"Scores below average: ";
//for loop to find the score below average
for(int i=0; i<count; i++)
    {
//if the score is below average
if(grade[i]<average)
        {
cout<<"\n * "<<grade[i];
        }
    }
return0;

}//end of the main method

Sample output:

EBK C++ FOR ENGINEERS AND SCIENTISTS, Chapter 7, Problem 1PP , additional homework tip  1

(b)

Expert Solution
Check Mark
Program Plan Intro

Program Plan:

  • Declaremax and count variables of int data type.
  • Declare sumand average variables of double data type
  • Declare an array grade[100] of double data type.
  • Use for loop to read all the array elements from the user.
  • Use if statement to check the negative value.
  • Calculate the sum and average of all the user entered score.
  • Display the calculated results to the user.
  • Use for loop to calculate grades below the average.
  • Use if condition to find the grades below the average.
  • Display the grades below average by using the asterisk in the front of grade(*).
  • Use if condition to find the grade.
  • int main() method function is used to perform all the task.

Program Description: The main purpose of the program is to modify the program code given in part (a) so that the code will also display the grade letters to the user.

Explanation of Solution

Program code:

//including required header files
#include<iostream>
usingnamespacestd;
//main method
int main()
{
//declaring required variables
int max = 100, count =0;
double sum=0, average=0;
//Declaring the array to store value of grades
double grade[max];

cout<<"Enter scores and any negative number to terminate"<<endl;

//This loop will execute maximum of 100
//while loop
while(count<max){
//Reading inputs from user 
cin>>grade[count];
//if the number is negative then loop is terminated
if(grade[count]<0)

break;
//adding the entered sum
sum = sum + grade[count];
//increnting loop variable 
count++;
    }//end of while loop
//Calculating  average
average = sum/count;
//displaying Calculated results to the user
cout<<"Total of the scores: "<<sum<<endl;
cout<<"Average of the scores: "<<average<<endl;
cout<<"Scores below average: ";
//for loop to find the score below average
for(int i=0; i<count; i++)
    {
//if the score is below average
if(grade[i]<average)
        {
cout<<"\n * "<<grade[i];
        }
    }
//displaying message to the user
cout<<"\n Grades and equivalent letters are: ";
//for loop
for(int i=0; i<count; i++)
    {
//if grades are between 90 and 100
if(grade[i]<=100&& grade[i]>=90){

cout<<"  \n"<<grade[i]<<": A"<<endl;

            }
/*if grades are greater than or equal to 80 and less than 90*/
elseif(grade[i]<90&& grade[i]>=80){

cout<<"  \n"<<grade[i]<<": B"<<endl;

            }
/*if grades are greater than or equal to 70 and less than 80*/
elseif(grade[i]<80&& grade[i]>=70){

cout<<"  \n"<<grade[i]<<": C"<<endl;

            }
/*if grades are greater than or equal to 60 and less than 70*/
elseif(grade[i]<70&& grade[i]>=60)
            {
cout<<"  \n"<<grade[i]<<": D"<<endl;

            }
//otherwise
else{
cout<<"  \n"<<grade[i]<<": F"<<endl;
            }
    }
return0;

}//end of the main method

Sample output:

EBK C++ FOR ENGINEERS AND SCIENTISTS, Chapter 7, Problem 1PP , additional homework tip  2

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
7. using c++, Write a void function that accepts an integer array a and a integer SizeA, and an integer n, and adds n to every element in that array. Be sure to develop an appropriate name for your function.
- in this exercise, please do not include and use string class. The function is using only array notation and manipulation.- string functions such as strlen is not allowed.- it should not have multiple return statements in the same function- there should be no global variable.- the function should not traverse the arrays more than once (e.g. looping through the array once only) A C++ PROGRAM named "changeCase" that takes an array of characters terminating by NULL character (C-string) and a boolean flag of toUpper. If the toUpper flag is true, it will go through the array and convert all lowercase characters to uppercase. Otherwise, it will convert all uppercase to lowercase. For example, if the array is {'H', 'e', 'l', 'l', 'o', '\0'} and the flag is true, then the array will become{'H', 'E', 'L', 'L', 'O', '\0'}. And if the flag is false, the array will become{'h', 'e', 'l', 'l', 'o', '\0'}
c) It is desired to compute the some of the first 10 terms of the series                    14k3 -20k2 +5k, k= 1, 2, 3            Write a MATLAB program that can calculate the sum                                                                                                                                                                    d)  Write a MATLAB program that determine the number of elements in all Numbers         bigger than 100

Chapter 7 Solutions

EBK C++ FOR ENGINEERS AND SCIENTISTS

Ch. 7.2 - (Practice) Write array declarations, including...Ch. 7.2 - (Data processing) Write an array declaration...Ch. 7.2 - (Data processing) Write a program that uses an...Ch. 7.2 - (Electrical eng.) Write a program that stores the...Ch. 7.2 - (Practice) a. Write a declaration to store the...Ch. 7.3 - (Practice) Write specification statements for the...Ch. 7.3 - (Desk check) Determine the output produced by the...Ch. 7.3 - (Practice) a. Write a C++ program that adds the...Ch. 7.3 - (Practice) Write a C++ program that adds...Ch. 7.3 - Prob. 5ECh. 7.3 - (Electrical eng.) a. An engineer has constructed a...Ch. 7.4 - Prob. 1ECh. 7.4 - Prob. 2ECh. 7.4 - Prob. 3ECh. 7.4 - Prob. 4ECh. 7.4 - Prob. 5ECh. 7.4 - (Electrical eng.) Write a program that declares...Ch. 7.4 - (Statistics) Write a program that includes two...Ch. 7.5 - Prob. 1ECh. 7.5 - (Practice) Run Program 7.10 to determine the...Ch. 7.5 - Prob. 3ECh. 7.5 - (List maintenance) a. Write a complete C++ program...Ch. 7.5 - Prob. 5ECh. 7.5 - (List maintenance) The following letters are...Ch. 7.5 - (File creation) Write a C++ program that creates...Ch. 7.5 - Prob. 8ECh. 7.5 - Prob. 9ECh. 7.5 - Prob. 10ECh. 7.5 - Prob. 11ECh. 7.5 - Prob. 12ECh. 7.5 - Prob. 13ECh. 7.5 - Prob. 14ECh. 7.5 - Prob. 15ECh. 7.6 - Prob. 1ECh. 7.6 - Prob. 2ECh. 7.6 - Prob. 3ECh. 7.6 - Prob. 4ECh. 7.6 - Prob. 5ECh. 7.6 - Prob. 6ECh. 7.6 - Prob. 7ECh. 7.6 - Prob. 8ECh. 7.6 - (Practice) Use the max_element and min_element...Ch. 7 - (Statistics) a. Write a C++ program that reads a...Ch. 7 - (Practice) Define an array named peopleTypes that...Ch. 7 - (Numerical) Given a one-dimensional array of...Ch. 7 - (Numerical) Write and test a function that returns...Ch. 7 - (Sorting) Read a set of numerical grades from the...Ch. 7 - (Numerical) a. Define an array with a maximum of...Ch. 7 - (Numerical) Using the srand() and rand() C++...Ch. 7 - (Statistical) In many statistical analysis...Ch. 7 - (Data processing) Your professor has asked you to...Ch. 7 - (Modify) Modify the program written for Exercise 9...Ch. 7 - Prob. 11PPCh. 7 - (Data processing) The answers to a true-false test...Ch. 7 - Prob. 13PPCh. 7 - (Data processing) Construct a three-dimensional...Ch. 7 - (Computation) A magic square is a square of...Ch. 7 - (Computation) Among other applications, Pascal’s...
Knowledge Booster
Background pattern image
Computer Science
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
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
CPP Function Parameters | Returning Values from Functions | C++ Video Tutorial; Author: LearningLad;https://www.youtube.com/watch?v=WqukJuBnLQU;License: Standard YouTube License, CC-BY