Question
Write a program to perform student record manage for class IST211. Create student record class and it should get the student information from the user
Write a program to perform student record manage for class IST211. Create student record class and it should get the student information from the user and set up student record class. The program will perform recording students grade information and compute final grade, and then print out the students class information. Student class definitions: It should contain first name, last name, 5 labs grade, 3 exams grade, final grade. Its member functions are default constructor, 2 copy constructors, display students information and override ToString(), which only display class type, last name, first name, and final grade. (Note: labs grade and exam grade are array with 8 elements) Student class implementation: Your implementation: All base set get information for students informations. Default constructor: set student class variables to default value. String variables set to None, double variable set to 0, and all elements in the array set to 0. Compute grade: base on the % of final grade to compute final grade. Labs grade is 50% of final grade Exam 1 and exam 2 are 15% of final grade Exam 3 is 20% of final grade Display: print out students information in following sequence: Last name, First name each exams grade each labs grade final grade Main program: The main program begins with ask the user to enter input student information, then storing information into a student class variable. Compute students final grade for each students, who enter by the user. Next, print out each students information use student class displayAllGrade( ) function. Write readdata function implementation to read the data from the user and store into student record class. Output Example: LastName, FirstName exam1 exam2 exam3 lab1 lab2 lab3 lab4 lab5 final Anderson, Baily 67 89 75 92 83 78 68 67 77.2 LastName, FirstName exam1 exam2 exam3 lab1 lab2 lab3 lab4 lab5 final Thomas, Daily 99 88 77 66 55 44 33 22 65.45 LastName, FirstName exam1 exam2 exam3 lab1 lab2 lab3 lab4 lab5 final Thomas, Eason 67 87 79 90 56 75 89 88 78.7 LastName, FirstName exam1 exam2 exam3 lab1 lab2 lab3 lab4 lab5 final Woo, Alice 88 77 66 55 44 87 96 81 74.25
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started