Question: Write a C# program to perform student record manage for class IST 200. Create student record class and it should get the student information from

Write a C# program to perform student record manage for class IST 200. 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.

Write a C# program to perform student record manage for class IST

Output Example: LastName, FirstName examl exam2 exam3 labl Anderson, Baily 67 89 75 92 lab2ab3 83 78 lab4 68 lab5 67 final 77.2 LastName, FirstName examl exam2 exam3 labl Thomas, Daily 99 88 77 66 lab2 55 lab3 44 lab4 33 lab5 22 final 65.45 LastName, FirstName examl exam2 exam3 labl Thomas, Eason 67 87 79 90 lab2 56 lab3 75 lab4 89 lab5 88 final 78.7 LastName, FirstName examl exam2 exam3 lab1 Woo, Alice 88 77 66 55 lab2 44 lab3 87 lab4 96 lab5 81 final 74.25 Output Example: LastName, FirstName examl exam2 exam3 labl Anderson, Baily 67 89 75 92 lab2ab3 83 78 lab4 68 lab5 67 final 77.2 LastName, FirstName examl exam2 exam3 labl Thomas, Daily 99 88 77 66 lab2 55 lab3 44 lab4 33 lab5 22 final 65.45 LastName, FirstName examl exam2 exam3 labl Thomas, Eason 67 87 79 90 lab2 56 lab3 75 lab4 89 lab5 88 final 78.7 LastName, FirstName examl exam2 exam3 lab1 Woo, Alice 88 77 66 55 lab2 44 lab3 87 lab4 96 lab5 81 final 74.25

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!