Computer Science, asked by monisha5868, 1 year ago

Interest (Si) ano compound Innerest CD) of a se
The Simple Interes
T and rate R) can be calcula
for a
(a) SI = p*t*r÷100
6) CI =p*{(1+R÷100)*pow of t-1}
writea
program to input sum, rate, time and time
sume and type of Interests for S
a
C for Compound Interest). Calculate and display the
sum,rate,time and type of interest ("S for simple interest and C for compound interest").Calculate and display the sum and the interest earned.

PLEASE ANSWER QUICKLY GUYS...........☺️☺️☺️☺️☺️​

Answers

Answered by Anonymous
20

\LARGE{\mathsf{====Answer====}}

1) For Simple Interest

____________[Code]___________

P = int(input("Enter Annual Principal"))

R = int(input("Enter Rate of Interest"))

T = int(input("Enter Time"))

SI = P*R*T/100

print(SI)

____________[End]___________

\rule{200}{2}

2) For Compound Interest

_____________[Code]____________

# Program by ShinchanTheGreat.

P = int(input("Enter Annual Principal"))

R = int(input("Enter Rate of Interest"))

T = int(input("Enter Time"))

CI = (P*(1+R/100)**T)-P

print(CI)

____________[End]_______________

✌ ✌

Mark as Brainliest

Answered by ItzCuteChori
1

\huge{\boxed{\boxed{\mathfrak{\pink{Answer}}}}}

❀ For Simple Interest

____________[Code]___________

P = int(input("Enter Annual Principal"))

R = int(input("Enter Rate of Interest"))

T = int(input("Enter Time"))

SI = P*R*T/100

print(SI)

____________[End]___________

❀ For Compound Interest

_____________[Code]____________

# Program by ShinchanTheGreat.

P = int(input("Enter Annual Principal"))

R = int(input("Enter Rate of Interest"))

T = int(input("Enter Time"))

CI = (P*(1+R/100)**T)-P

print(CI)

____________[End]_______________

Similar questions