college, C/C++ Programming

Assignment Help:
#question.College life is tough. Eating pizza for every meal is hitting you hard. You are looking at working out to stay healthy. You found a web site that tells you how many calories each exercise burns. As a part of your planning, you need to determine how long it will take you to burn off your lunch. A normal 14 inch pepperoni pizza has 2480 calories with 310 calories per slice.
For this part of the assignment, you will be using the Ch command-line interface. Use the instructions given at the end of this portion of the assignment to prepare your work for submission.
• Declare four floating point variable called Calories, Time, CPH and Slices.
float Calories, Time, CPH, Slices;
• Write an input statement for CPH and then (at the prompt) enter the value representing the average calories per hour the exercise burns.
cin >> CPH;
• Write an input statement for Time and then (at the prompt) enter the value representing the total time you worked out.
• Calculate the total amount of calories burned.
Calories = Time * CPH;
• Calculate the total number of pizza slices you could eat if you worked out for 2 hours.
Slices = (CPH * 2)/310;
• Output the total calories burned and number of slices you can eat.

cout << “The total calories burned are ” << Calories << “ calories.” << endl;
cout << “The number of pizza slice you may eat are ” << Slices << endl;

• Submission instructions for assignment 9a:

o Once you have completed all of the steps above and with the command-line interface open on your screen, press the “Print Screen” key on the keyboard.

o Now, open Paint and use the CTRL+V key combination to paste the captured image into Paint.

o Save the image file as lab9a.jpg (Use JPEG as the file type).

Lab 8b: Program Mode
• Open Notepad
• The first line must be a comment statement. Include your name in the comment.
• Save the file as lab9b.ch. Remember to save your work frequently.
• Type the include statement that is needed to facilitate input/output capabilities.
• The beginning of your code starts with the following statement: main ( ) {
• Enter your code after the opening curly bracket. Your code should contain the statements to do the following. Remember to close each line of code below with a semicolon.
o Declare four floating point variable called CPH, Time, Calories, and Slices.
o Output a short phrase asking for the user’s calories per hour the exercise burns.
o Input the calories per hour.
o Output a short phrase asking for the total timed the user worked out.
o Input the time.
o Calculate the total calories burned during the workout and the total pizzas you can eat.
o Output the computed calories burned and number of pizzas you can eat.

• End your program code with the closing curly bracket.
• To execute your program, type ./filename in the Ch command-line interface (dot forward-slash filename; the ch extension is not needed here)

• If you have error messages, note the cause of error indicated in each message and change your code to fix the problem(s).

• To make changes to your program, move back into Notepad, change the code, and save the file.
• To run the program again, move back to the Ch window and use the up-arrow key to move the command ./filename to the current line.

Related Discussions:- college

C program to replace every occurrence of in a string, Program is to replace...

Program is to replace every occurrence of in a string: Program is to replace every occurrence of c1 in string with c2 and have function return the no. of replacement int re

Operation on string - c ++ program, Operation on String - C ++ Program: ...

Operation on String - C ++ Program: Write a program to define operations on string in c++. class String {    char *char_ptr;   // pointer to string contents    int le

Random question, Ask question #write statement that assign random integer t...

Ask question #write statement that assign random integer to the varaible n in the (100

Luminous Jewels - The Polishing Game, Byteland county is very famous for lu...

Byteland county is very famous for luminous jewels. Luminous jewels are used in making beautiful necklaces. A necklace consists of various luminous jewels of particular colour. Nec

How comment symbols help in debugging the code, How does placing some code ...

How does placing some code lines between comment symbols help in debugging the code? - Placing comment symbols /* */ around a code separates some code that coder believes might

I need cryengine sandbox speedometer and tachometer, I need Cryengine Sandb...

I need Cryengine Sandbox Speedometer and Tachometer We want to get working Tachometer and Speedometer for a car in latest Cryengine Sandbox. You will find how to make it usin

Minimum shelf, At a shop of marbles, packs of marbles are prepared. Packets...

At a shop of marbles, packs of marbles are prepared. Packets are named A, B, C, D, E …….. All packets are kept in a VERTICAL SHELF in random order. Any numbers of packets with thes

Can i employ realloc() on pointers allocated through new?, A: No.       ...

A: No.       While realloc() need to copy the allocation, this uses a bitwise copy operation, that will tear several C++ objects to shreds. C++ objects must be allowed to copy t

Explain about inheritance, Inheritance and Reuse Consider a car manufac...

Inheritance and Reuse Consider a car manufacturing company. When they require building a new car, they have two choices. They can start from the scratch, or they can change an

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd