Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem write using C++ programming Design a simple GPA and CGPA interactive system. Your program will read input data from keyboard and display reports on
Problem write using C++ programming Design a simple GPA and CGPA interactive system. Your program will read input data from keyboard and display reports on the screen. You will read each student records in Computer and Information Sciences major and current information for each student Each record consists of a student id number (string), last name (string), first name (string), middle initial (character), phone number (string), sex (character), class level (2- character string), total credits earned till Fall 2016 (integer), and its cumulative GPA (floating number). And Spring 2017 information are followed. Each enrollment input data is the number of registered courses in Spring 2017 (If the student didn't registered in Spring 2017, the number of registered courses is a value 0) and a list of course records Each course consists of a course name(string), the number of course credits (integer) and its letter grade (character) interactively Your program will include the following tasks and print the corresponding output on the screen interactively 1. Write a program that reads the information for each student from the keyboard, calculates its semester GPA, implements updating cumulative GPA, and produces an updated grade report. 2. Display the reports on the screen. The reports have the detail information with updated cumulative GPA and credits for all the students. (If the student registered Spring 2017, then display the detail information including all the courses with their grades. If not, display the summarized report The output format on the screen should look like the following Example Output format for task 2: (NOTE: If the student didn't take any course in Spring 2017 semester, just generate first 6 lines Name: JOHNSON, JAME L Tel. : 4107632134 Gender: Male Class Level: Freshman Registration of Spring 2017: Yes Unofficial Report Card COURSE CREDITS GRADE COSC237 BUSC372 DHSC362 CIOS100 POSC320
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