At Westonci.ca, we connect you with experts who provide detailed answers to your most pressing questions. Start exploring now! Discover a wealth of knowledge from experts across different disciplines on our comprehensive Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

: A personal trainer will generate a report of a client’s average weight. The program will
have the trainer enter a client’s name and their weight on each of four weigh in days. The program
will calculate the average weight and display the client’s name, their weights, and their average
weight.
c++ code

Sagot :

The program illustrates the use of mathematical operations such as division and addition operations.

The complete program in C++ where comments are used to explain each line is as follows:

#include<iostream>

#include<string>

using namespace std;

int main(){

//This declares name as string

string name, allWeights = " ";

//This gets input for name

cin>>name;

//This declares weight as integer and also initializes the total weight to 0

int weight, total = 0;

//The following iteration gets input for weight

for(int i = 0; i<4;i++){

   cin>>weight;

   //This calculates the total weight

   total+=weight;

//This records all weights

   allWeights+= " "+to_string(weight);

}

//This prints the client's name

cout<<"Name: "<<name<<endl;

//This prints the all recorded weights

cout<<"Weights:"<<allWeights<<endl;

//This prints the client's average weight

cout<<"Average weight: "<<total/4;

return 0;

}

At the end of the program, the client's name, all input weights and the average weights are displayed

See attachment for sample run

Read more about similar programs at:

https://brainly.com/question/13439071

View image MrRoyal