CIS 1111 Programming Topic - 8Calculate Your Grade

(20 Points)

Description:

In this assignment, you will develop C++ and Raptor programs to input and find the average for quiz and assignment grades, then calculate the overall average and letter grade.

Requirements:

  1. Use variables of the appropriate type.
  2. Use accumulators and counters.
  3. Use a “for” loop to input quiz grades for the user and total the four quizzes. (Quizzes are worth 10 points)
  4. Calculate and display the quiz average
  5. Use a while loop to input andtotal the eightassignments.(Assignments are worth 20 points).
  6. Calculate and display the average of the assignments
  7. As the grades are inputted, check to make sure they are not negative numbers or greater than their worth.
  8. Calculate the overall average. To do so add your quizzes and assignments totals and divide by possible points.
  9. Use setprecision to only show the integer portion of the percentage grade.
  10. Use a nested if-else statement to translate your percentage to a grade.
  11. Display the total of quizzes, assignments, percentages, and letter grade.
  12. Flowchart the program in Raptor.

Sample output:

Submit:

Zipped folder named LastNameFirstNameCIS1111NameOfAssignment which contains:

  1. Your .cpp file
  2. Screen shots of your code and output
  3. The Raptor program
  4. Screenshots of your Raptor program and output

Grading Guidelines for This Assignment

Range – Low End
(Did not do or did very little effort) / Range – High End
(Used correctly and spent time/effort on programming)
Names of variables are meaningful and the program comments self-document the program / 0 / 2
Met all stated requirements including developing the Raptor program. / 0 / 10
Output is correct given the input, and the output is correctly formatted / 0 / 4
Program compiles and executes without any runtime, syntax, or logic errors / 0 / 3
The zipped project folder that includes the C++ .cpp source files and screens shots of the code and console and the Raptor program and screen shots are uploaded to drop box. / 0 / 1
Total Points Possible / 0 / 20

1