diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-05-16 21:38:59 -0500 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-05-16 21:38:59 -0500 |
commit | 9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c (patch) | |
tree | 9e739b11361f5fd122b31cfce107947502b69809 /OLD/csci4131/lec/Lec6Ex1.html | |
parent | Add trash (diff) | |
download | homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.tar homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.tar.gz homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.tar.bz2 homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.tar.lz homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.tar.xz homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.tar.zst homework-9148fa6e2fad9d54e3451a4478e03f55f0a9fa3c.zip |
Rearrange files
Diffstat (limited to 'OLD/csci4131/lec/Lec6Ex1.html')
-rw-r--r-- | OLD/csci4131/lec/Lec6Ex1.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/OLD/csci4131/lec/Lec6Ex1.html b/OLD/csci4131/lec/Lec6Ex1.html new file mode 100644 index 0000000..7b45e18 --- /dev/null +++ b/OLD/csci4131/lec/Lec6Ex1.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> + +<!-- Addition script. --> +<html> + +<head> + <meta charset="utf-8"> + <title>Add and Multiply Program</title> + <script> + + + var number1; // first number to add + var number2; // second number to add + var sum; // sum of number1 and number2 + var product; // product of number1 and number2 + + // read in first number from user as a string, use the window object’s prompt method + // The window object is a global object - all methods and properties that are not part of another object are part of the window object + + number1 = window.prompt("Enter first integer"); + // read in second number from user as a string – note you can omit the object name and dot operator + // when referring to properties or attributes of the window object because it is global + + number2 = window.prompt("Enter second integer"); + + number1 = parseInt(number1); + number2 = parseInt(number2); + sum = parseInt(number1) + parseInt(number2); // add the numbers + product = number1 * number2; //multiply the numbers + + // display the results – uses the document object, highest object in the DOM structure. You have to use object name and dot operator. + document.writeln("<h1>The program returns " + sum + " as the sum, and</h1>"); + document.writeln("<h1>" + product + " as the product</h1>"); + </script> +</head> + +<body></body> + +</html>
\ No newline at end of file |