Computer Science, asked by rupanjana43, 4 months ago

pla answermy question​

Attachments:

Answers

Answered by ηιѕн
1

Write a Java program, where principal amount is 5500, user has to input rate of interest and time period calculate and print Simple Interest of the principal amount.

Answered by singgmeena1
1

Answer:

P= 5000 #Principal Amount

R=15 #Rate

T=1 #Time

SI = (P*R*T)/100; # Simple Interest calculation

print("Simple Interest is :");

print(SI); #prints Simple Interest

Explanation:

I hope this answer will help you

Similar questions