logo
Ryan's Webpage
 

Adder

The Adder

<html>
<head>
<title>Adder</title>
</head>

<body>
<h1>The Adder</h1>
<script>
//by Ryan Te
//9/18/07
//adder
//demonstrates how a computer does math

var meal = 22.50;
var tip = meal * .15;
var total = meal + tip;
alert ("the meal is $" + meal);
alert ("the tip is $" + tip);
alert ("Total bill: $" + total);
</script>
</body>
</html>

 

 

Contact Me

 

Mr. Styner's Webpage

 

Classmates