Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

riving is expensive. Write a program with a car's gas milage ( miles / gallon ) and the cost of gas ( dollars / gallon

riving is expensive. Write a program with a car's gas milage (miles/gallon) and the cost of gas (dollars/gallon) as floating-point input, and output the gas cost for 20 miles, 75 miles, and 500 miles.
Output each floating-point value with two digits after the decimal point, which can be achieved by executing
cout << fixed << setprecision(2); once before all other cout statements. Note: End with a newline.
Ex: If the input is:
20.03.1599
where the gas mileage is 20.0 miles/gallon and the cost of gas is $3.1599/gallon, the output is:
3.1611.8579.00 #include
#include //For setprecision
using namespace std;
int main(){
double gasMileage, gasCost;
// Input gas mileage and gas cost
cin >> gasMileage >> gasCost;
// Set precision for floating-point output
cout << fixed << setprecision(2);
// Output gas cost for 20 miles, 75 miles, and 500 miles
cout << gasMileage *20.0* gasCost <<'';
cout << gasMileage *75.0* gasCost <<'';
cout << gasMileage *500.0* gasCost << endl;
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

XML Data Management Native XML And XML Enabled Database Systems

Authors: Akmal Chaudhri, Awais Rashid, Roberto Zicari, John Fuller

1st Edition

0201844524, 978-0201844528

Students also viewed these Databases questions