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
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