Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write in c++ 2.18 LAB: Convert to dollars Given four values representing counts of quarters, dimes, nickels and pennies, output the total amount as dollars

write in c++
image text in transcribed
2.18 LAB: Convert to dollars Given four values representing counts of quarters, dimes, nickels and pennies, output the total amount as dollars and cents 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. Ex. If the input is: 4.31 where 4 is the number of quarters, 3 is the number of dimes, 2 is the number of nickels, and 1 is the number of pennies, the output is Amount: \$1.41. For simplicity, assume input is non-negative Note: Use named constants (also known a5 constant varuables) for the value of quarters (25) dimes (10) and nickels (5) in cents

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

Practical Issues In Database Management A Refernce For The Thinking Practitioner

Authors: Fabian Pascal

1st Edition

0201485559, 978-0201485554

More Books

Students also viewed these Databases questions