- Get link
- X
- Other Apps
Posted by
Naveen M K
on
- Get link
- X
- Other Apps
Calculate Simple Interest
Coding
#Calculate Simple interest
p=int(input('Type your principle amount : '))
ir=int(input("Type your rate of interest : "))
t=int(input(" Type time (in year) : "))
si=(p*ir*t)/100;
print("You will get interest : %s"%si)
This will ask for principle,rate of interest and time and print the simple interest
Comments
Post a Comment