CCSF CNIT 133 – JavaScript
Homework 3 – Functions
Create a webpage that accepts input for the student's
homework average, mid-term
exam score, final exam score and ACR. Calculate the student's
final average according to the formula:
final average = (.5 * hwAvg) + (.2 * midTerm) + (.2 * final) +
(.1 * ACR)
Display the letter grade based on the following:
90-100: | A | • | 80-89: | B | • | 70-79: | C | • | 60-69: | D | • | 0-59: | F |
Create a webpage that allows the user to input a salesperson's item sold from the previous week. Calculate how much the person sold and how much they earned.
Create a webpage containing a script that will determine whether a department-store customer has exceeded the credit limit on their charge account.
Create a webpage that contains a script that inputs a five-digit integer (not starting with zero) that determines and outputs a message stating whether or not it's a palindrome.
Input a five-digit integer (not starting with zero) to display if it is a palindrome, not a palindrome, or an input error.
Create a webpage that converts temperature from celsius to fahrenheit and vice versa.
Create a webpage that will help an elementary school student learn multiplication.
We're playing Craps! 'Nuff said… roll those dice!
Click Here for Instructions on How to Play
On the first roll:
– you win if you roll a 7 or 11
– you lose if you roll a 2, 3 or 12
– if you roll 4, 5, 6, 8, 9 or 10; that number will
become your "point"
The goal now is to keep rolling until you match
that "point". However, if you roll a 7, you lose.