CJCoding With Joseph

Compute Simple Interest

Write a function double simpleInterest(double p, double r, double t) that returns simple interest using p * r * t / 100. Call it with simpleInterest(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.