Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
<head>
<script language="JavaScript">
function calculator(form) {
var a = parseInt(form.a.value),
    b = parseInt(form.b.value),
    c = parseInt(form.c.value),
    d = a*b/100,
    z = a+d,
    s = z/c;
form.total.value = s;
form.plat.value = d
}
</script>
<form>
Summa kredita <input type="text" name="a"/><br>
Procentnaya stavka <input type="text" name="b"><br><br><br>
Srok kredita <input type="text" name="c"><br>
<input type="button" value="Rasschitat" onclick="calculator(this.form)">
<input type="reset" value="Sbros"><br>
Rezultat <input type="text" name="total">
Pereplata <input type="text" name="plat">
</form>
</head>
</html>
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers