โ Back to Functions/Methods
Question 288
Function: Half a Number
Function: Half a Number
Write a functionhalf(double n)that returnsndivided by 2. Call it with15and print the result to two decimals: 7.50 Using adoublekeeps the fractional part. Print withprintf("%.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.