CJCoding With Joseph

Function: Half a Number

Write a function half(double n) that returns n divided by 2. Call it with 15 and print the result to two decimals:

7.50

Using a double keeps the fractional part. Print with printf("%.2f", ...).

Expected Output:

7.50
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.