You are given with Principle
amount($), Interest Rate(%) and Time (years) in that order. Find
Simple Interest.
Print the output up to two decimal
places (Round-off if necessary).(S.I. = P*T*R/100)
function mul()
{var a=document.getElementById("a").value;
var b=document.getElementById("b").value;
var c=document.getElementById("c").value;
var d =b/100;
var e=a*d*c;
console.log("SI ="+e)}
Comments
Post a Comment