โ Back to User Input
Question 352
Total Cost from Price and Quantity
Total Cost from Price and Quantity
Read a floating-point unit price and an integer quantity from input, then print the total cost (price times quantity) with exactly 2 decimal places. For example, if the input is: 2.50 3 print: 7.50 Use<iomanip>withfixedandsetprecision(2).
Expected Output:
7.50
Topics:
User Input
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.