Computer Science, asked by avinaskonz, 5 months ago

Write a program in python to calculate simple interest. Read principal, rate, and time from keyboard​

Answers

Answered by valeriy69
1

\small\mathsf\color{pink}{Solution\: using\: python\: 3}

p = float(input("principal: "))

r = float(input("interest rate: "))

t = float(input("time: "))

print(f"simple interest = {p * (r / 100) * t}")

\small\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions