logo
Ryan's Webpage
 

BadAdd

The BadAdd

<html>
<head>
<title>BadAdd</title>
</head>

<body>
<h1>The BadAdd</h1>
<script>
//by Ryan Te
//9/18/07
//BadAdd
//Demonstrates a potential pitfall

var meal;
var tip = meal * .15;
var total = meal + tip;

//get the cost of the meal from the user
meal = prompt("How much was the meal?");

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