In: Computer Science
In this solution a basic html page is generated and the solution focuses on the javascript part:
<!DOCTYPE html>
<html>
<head>
<script> // script tag to declare our javascript portion
function calc_cal() // function declaration to calculate the calorie
{
//declaring variables and taking input using prompt
var ct = prompt("How much calories have you taken so far today?");
var ctt =prompt("How much more calories are you expecting to take today?");
var cb =prompt("How much carories have you burned or expecting to burn today?");
var cg =prompt("How much is your calorie intake goal for today?");
var ci =prompt("How much calories does the ice cream contain?");
// calculating the total calorie for the day including the ice cream
var x = ct+ctt-cb+ci;
if(x>cg)
{
//if the total calorie is more than the calorie goal
alert("You can not have the ice cream today, it will exceed your calorie intake goal");
}
else
{
// when the calorie is less than or equal to the calorie goal
alert("You can treat yourself with an ice cream today :)");
}
}
</script>
</head>
<body align=center>
<h1>CHECK YOUR DIET FOR TODAY</h1>
<!--calling the function with the help of a button-->
<button type="button" onclick="calc_cal()">click here</button>
</body>
</html>
output: