The weight of water is 62.42796 pounds per cubic foot.Write a complete C++ program

The weight of water is 62.42796 pounds per cubic foot.Write a complete C++ program

1.Code writing
The weight of water is 62.42796 pounds per cubic foot.Write a complete C++ program to input the length, width, and depth of a pool in feet. Compute the volume (Volume is the length times the width times the depth) and multiply this by the weight of a cubic foot of water.Checkpoints: The weight of water must be declared as a pound defined global constant; must prompt the user for each dimension separately; and, output must be one digit to the right of the decimal point.Write all necessary statements. Use no function other than main().. No arrays, no loops. (20 points)Sample run:Enter length (ft): 30.6
Enter width (ft): 15.2
Enter depth (ft): 8.0
Weight: 232291.9 pounds2.Code writing

Complete the program below writing by writing the prototypes and function definitions for getData() and for calBMR(). Make no changes to main()!Function getData() is to prompt the user for and input the person’s weight, height (in inches), age, and ‘F’ for female and ‘M’ for male. Make sure that the program is not case sensitive and exit the program if there is a data entry error. The function calcBMR() should calculate and return the basil metabolic rate (BMR).For Women: BMR = 655 + 4.3 * weight + 4.7 * height in inches + 4.7 * ageFor Men: BMR = 66 + 6.3 * weight + 12.9 * height in inches + 6.8 * age#includeusing namespace std;// Write the prototypes for getData() and calcBMR()__________________________________________________________________________________________int main()
{
// Local Declarations
double weight, height, age;
char sex;
double valBMR;
//Call function to input person’s information
getData(weight, height, age, sex);
//Call function to calculate BMR
valBMR = calcBMR(weight, height, age, sex);
// Output
cout << “BMR: ” << valBMR << endl;return 0;
}// main
//Define functions getData() and calc()HTML Editor Keyboard Shortcuts

3. Code writing
Meridian Corporation of Fremont is trying to decide whether to reward employees who carpool to work. The proposed plan is to pay each employee in the carpool $ 0.08 per mile if the minimum passenger efficiency of 25.0 is met. The passenger efficiency is calculated asP = nm
Gwhere n is the number of people in the carpool, m is the distance traveled in miles and G is the number of gallons of fuel used.The file opened in part A (do not open it again but do have a reference to it as a parameter) contains data on existing carpools. The input file represents each existing carpool as a line of data containing the number of people in the carpool, the total commuting distance for a five-day work week, and the number of gallons used. Write a function called calcEfficiency to process this file until the end of data. Calculate the passenger efficiency for each carpool and if the efficiency is greater than 25.0 then output the passenger efficiency and the amount to be rewarded to the screen. Use no arrays! Paste in only the function definition – not main() even it you wrote it to test your program.Sample carpool.txt2 80 4
3 125 10.5
2 350 15.9Sample output Screen:Efficiency Money
40.0 $ 6.40
35.7 $10.00
44.0 …

4. Assume #includeGivenifstream fpIn;Write a statement to open a file called carpools.txt and assign the pointer to fpIn. If the file cannot be found, then print out the message No such file and exit the execution of the program.

"96% of our customers have reported a 90% and above score. You might want to place an order with us."

Essay Writing Service
Affordable prices

You might be focused on looking for a cheap essay writing service instead of searching for the perfect combination of quality and affordable rates. You need to be aware that a cheap essay does not mean a good essay, as qualified authors estimate their knowledge realistically. At the same time, it is all about balance. We are proud to offer rates among the best on the market and believe every student must have access to effective writing assistance for a cost that he or she finds affordable.

Caring support 24/7

If you need a cheap paper writing service, note that we combine affordable rates with excellent customer support. Our experienced support managers professionally resolve issues that might appear during your collaboration with our service. Apply to them with questions about orders, rates, payments, and more. Contact our managers via our website or email.

Non-plagiarized papers

“Please, write my paper, making it 100% unique.” We understand how vital it is for students to be sure their paper is original and written from scratch. To us, the reputation of a reliable service that offers non-plagiarized texts is vital. We stop collaborating with authors who get caught in plagiarism to avoid confusion. Besides, our customers’ satisfaction rate says it all.

© 2022 Homeworkcrew.com provides writing and research services for limited use only. All the materials from our website should be used with proper references and in accordance with Terms & Conditions.

Scroll to Top