CJCoding With Joseph

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> with fixed and setprecision(2).

Expected Output:

7.50
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
2.50 3
This input is automatically fed to your program's stdin
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.