CJCoding With Joseph

Function: Triangle Area

Write a function triangleArea(double base, double height) that returns 0.5 * base * height. Call it with base 10 and height 6 and print the area to two decimals:

30.00

Print with printf("%.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.