ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 06 Jun 2017 My Price 8.00

Create a program to handle a college class grades

The skeleton code shows how to create a simple function, so you have one done for you!

If your last program didn't work,  remember what kinds of data and all the topics discussed in Chapters 2 through 5.

The logic needed here is complex!!! Pseudo code your logic first then work one piece of the code at a time, Don't forget to ensure the validity of the input.

Create a program to handle a college class grades:

  • Capture the Teacher's name
  • Capture the Class designation
  • The program should ask how many students are in the class and do the following for each student:
    • Read the students name
    • Read in up to 10 grades for the student (from 0 - 100 is acceptable. If outside the range don't use the input, ask for a correction , 999 should stop input of grades if there are less than 10)
    • Calculate the average of the student's grades
    • Compute the student's grade as a letter grade
  • For the entire class
    • Compute the class's grade average
    • Determine how many A's, B's, C's, D's and F's are in the class.

Write the following data to a file called class_statistics.txt

 

Teacher: Bob Marley
Class: CGS1010
Student Name: Jim Beam            Average: 88   Grade: B
                       Donna Jenner                     95              A
Student count: 2
Student average: 91.5
A's: 1
B's: 1
C's: 0
D's: 0
F's: 0

Answers

(11)
Status NEW Posted 06 Jun 2017 06:06 AM My Price 8.00

-----------

Not Rated(0)