Computer Science, asked by ashu55594, 4 months ago

WAP to calculate simple interest and amount​

Answers

Answered by jai696
2

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

p, r, t = float(input("p: ")), int(input("r: ")), int(input("t: "))

a = p * (1 + ((r / 100) * t))

print("A =", a)

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

Answered by amritamohanty918
1

Answer:

Use Python 3

p, r, t = float(input("p: ")), int(input("r: ")), int(input("t: "))

p, r, t = float(input("p: ")), int(input("r: ")), int(input("t: "))a = p * (1 + ((r / 100) * t))

p, r, t = float(input("p: ")), int(input("r: ")), int(input("t: "))a = p * (1 + ((r / 100) * t))print("A =", a)

Similar questions