โ Back to Functions
Question 400
Compute Simple Interest
Compute Simple Interest
Write a functiondouble simpleInterest(double p, double r, double t)that returns simple interest usingp * r * t / 100. Call it withsimpleInterest(1000, 5, 2)and print the result with exactly 2 decimal places: 100.00
Expected Output:
100.00
Topics:
Functions
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.