Question

In: Computer Science

You are on a diet and you are writing a javascript program that determines whether or...

You are on a diet and you are writing a javascript program that determines whether or not you can treat yourself to an ice cream. Your program takes as input:
1. Number of calories you have taken so far that day.
2. Number of calories you are expecting to take later on that day (excluding the potential
ice cream)
3. Number of calories you have burnt (or are expecting to burn) with exercise that day. 4. What is your goal of number of calories taken for a day.
5. The number of calories in the ice cream that you're thinking of eating!
and outputs whether or not you can take that ice cream

Solutions

Expert Solution

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:


Related Solutions

1/ a) What determines whether you should use a loop or recursion when you are writing...
1/ a) What determines whether you should use a loop or recursion when you are writing an algorithm for a tree, and why does it matter? b) Why did we put Head and Tail nodes in our List class?
Write a program that determines whether an input string is a palindrome; that is, whether it...
Write a program that determines whether an input string is a palindrome; that is, whether it can be read the same way forward and backward. At each point, you can read only one character of the input string; do not use an array to first store this string and then analyze it (except, possibly, in a stack implementation). Consider using multiple stacks. In Pseudocode please
C++ For the assignment, we will use the previous assignment’s program that determines whether a college...
C++ For the assignment, we will use the previous assignment’s program that determines whether a college class room is in violation of fire law regulations regarding the maximum room capacity and add more logic to that program. We will need to make the following enhancements… For each new class entry that is taken, you will write out the information to a file. The file can be any .txt file name of your choosing. The file should be appended to each...
C++ For the assignment, we will use the previous assignment’s program that determines whether a college...
C++ For the assignment, we will use the previous assignment’s program that determines whether a college class room is in violation of fire law regulations regarding the maximum room capacity and add more logic to that program. We will need to make the following enhancements… Convert all of the function’s parameters from pass by value to pass by reference. Accumulate totals for each of the class rooms that we are using for this program. When the program ends (user choice...
C++ For the assignment, we will use the previous assignment’s program that determines whether a college...
C++ For the assignment, we will use the previous assignment’s program that determines whether a college class room is in violation of fire law regulations regarding the maximum room capacity and add more logic to that program. We will need to make the following enhancements… Convert all of the function’s parameters from pass by value to pass by reference. Accumulate totals for each of the class rooms that we are using for this program. When the program ends (user choice...
Design and Write a program that asks for a 4-digit year and determines whether that year...
Design and Write a program that asks for a 4-digit year and determines whether that year is a leap year or not. This should work for any year from 1700 to 2022. Anything not completely obvious to a newbie must use # notes on lines to explain. Must be modularized and repeatable. Should have an invocation of the main routine at the end of the program. Must have Flowgorithm and Python code.
Write a Python program called arecongruent.py that determines whether two integers a and b are congruent...
Write a Python program called arecongruent.py that determines whether two integers a and b are congruent modulo n. Your code must work as follows: From the command prompt the user runs the program by typing python arecongruent.py and then your program interface prompts the user for the values of a, b, and n. The program outputs either True or False, and the values of a mod n and b mod n. Submit your Python source code arecongruent.py. NOTE: please include...
def main():     print('This program determines whether you have hypertension.')     systolic_pressure = float(input('Enter your systolic...
def main():     print('This program determines whether you have hypertension.')     systolic_pressure = float(input('Enter your systolic pressure: '))     diastolic_pressure = float(input('Enter your diastolic pressure: '))     # insert statement here to call the hypertension_tester function def hypertension_tester(dp, sp):     if sp >= 140 or dp >= 90:         print('You have hypertension')     else:         print('You do not have hypertension') main() A person has hypertension if systolic pressure is 140 or above or diastolic pressure is 90 or above. Which of the...
You are writing a letter to advise a claimant as to whether or not their claim...
You are writing a letter to advise a claimant as to whether or not their claim has been accepted. What type of information must be included in the determination letter? Provide at least eight examples.
The program you will be writing displays a weekly payroll report. A loop in the program...
The program you will be writing displays a weekly payroll report. A loop in the program should ask the user for the employee's number, last name, worked hours, hourly pay rate, state tax and federal tax rate. After data in entered and the user hits the enter key, the program will calculate gross an net pay, then displays all employee's payroll information, and ask for the next employees' information. if worked hour is more than 40, double pay the hours...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT