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