โ Back to Functions/Methods
Question 282
Function: Triangle Area
Function: Triangle Area
Write a functiontriangleArea(double base, double height)that returns0.5 * base * height. Call it with base10and height6and print the area to two decimals: 30.00 Print withprintf("%.2f", ...).
Expected Output:
30.00
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.