CJCoding With Joseph
15per day

Rectangle Area Input

Write a program that reads the length and width of a rectangle as floats and calculates the area:

Area: [result]

Display the area with 2 decimal places using fixed and setprecision(2). The formula is: area = length * width.

Expected Output:

Area: 24.00
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
6\n4\n
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.