Computer Science, asked by sayonikadasclass8c, 8 months ago

WAP to find the simple interest when the principal, rate,time are entered by the user(Simple interest=principal*rate*time/100)​

Answers

Answered by Aeslvah
3

Answer:

In QBASIC

Cls

Input"the principal";P

Input"the rate";R

Input"the time";T

SI=P*T*R

Print"the simple interest";SI

END

Similar questions