JavaScript Assignment for CIS17

  1. Write the code using JavaScript to take in 5 grades, determine the average and then determine the letter grade.
  2. Do a loop 5 times where you deal with 5 different users. For each user, ask the user three questions (or more), take the data they provide and do a calculation and display the results.
  3. Do a loop for Monday through Friday where you take in an amount each day and add it to the total. At the end, print out the total.
  4. You have the price of an item. Each week the price will increase by 5%. How long will it take to double the price? Show the results for each week and print a message when it is double or more than double.
  5. Write the program to play the Rock, Paper, Scissors game. A game is one random guess by the computer compared to user input. Write the program so the user can choose to play again or quit.