Computer Science, asked by darshchandra8, 7 days ago

Write a program to accept Principal amount, Time (in years) from the user. If Principal is greater than 20,000 then the rate of interest would be 12% otherwise Rate of interest would be 9%. Calculate and print simple interest. Simple Interest=(Principal x Time x Rate of Interest)/100

Answers

Answered by khushisharmamadinath
0

Answer:

sorry i can, t answer someone please help him

Explanation:

no class on sunday write fast

Answered by hanumantkalyankar
0

Explanation:

Explanation

Simple Interest is the convenient method used in banking and economic sectors to calculate the interest charges on loans.It gets estimated day to day with the help of some mathematical terms.

Formula

Simple Interest = (P × R × T)/100

where P = Principal Amount, R = Rate per Annum, T = Time (years)

Algorithm

Define Principal, Interest and Time of loans.

Apply in the formula.

Print the Simple Interest.

Complexity

O(1)

Solution

Python

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

Similar questions