Objective: Review file streams and sorting (or learn this if you haven’t in 22A)

Objective: Review file streams and sorting (or learn this if you haven’t in 22A)

Objective:
Review file streams and sorting (or learn this if you haven’t in 22A)
Learn about vectors (if you haven’t in 22A), string streams and sort
Assignment: Write a program that reads a text file containing a set of test scores. Each line in the file contains scores of a specific student. For example, the first line has the scores for the first student and so forth. Average the scores for each student and save them in a vector of final scores. Then sort the final scores to calculate the class average and median. Print the final scores sorted from least to greatest, the class average and median. Detailed set of requirements: File processing:
Program should try to open a file using a default file path first, then check if it was successful, if not, ask the user for a different file name/path and try again until it succeeds. Do not try to process a file that you could not open. Remember to close the file when done reading.
To make sure you process each student’s scores separately, read each line from the file using the getline function. You can find an example on how to use getline here: http://www.cplusplus.com/forum… (Links to an external site.) Links to an external site.
Convert each line, which should be a string, to a string stream, so it can be used as a source for the individual test scores:
stringstream lineStream(line) // line is the string read from the file.
Read the individual scores from the lineStream variable as you would from an ifstream.
Store all final scores in a vector (not an array!).
To add values to a vector, use function push_back.
Sort the data using the sort function (you will need this for the median)
Refer to http://www.cplusplus.com/refer… (Links to an external site.)

Links to an external site. to learn how to use sort.
Calculate the average and median of the values in the vector.
Average is calculated by adding all data points then dividing by the number of data points.
Median is the data point in the middle after you have sorted them. If there is an odd number of data points, there will be only one in the middle. If there is an even number of data points, the median is the average of the two in the middle. Your algorithm must work for both cases.
Define separate functions to calculate and return average and median.
Define a separate function to print the required info on the screen:
This function should receive the vector, the average and median as parameters.
Use a range-based for loop to print the scores in the vector.
Do not use global variables!
Document your source code following the guidelines:
Lab Documentation Guidelines

"96% of our customers have reported a 90% and above score. You might want to place an order with us."

Essay Writing Service
Affordable prices

You might be focused on looking for a cheap essay writing service instead of searching for the perfect combination of quality and affordable rates. You need to be aware that a cheap essay does not mean a good essay, as qualified authors estimate their knowledge realistically. At the same time, it is all about balance. We are proud to offer rates among the best on the market and believe every student must have access to effective writing assistance for a cost that he or she finds affordable.

Caring support 24/7

If you need a cheap paper writing service, note that we combine affordable rates with excellent customer support. Our experienced support managers professionally resolve issues that might appear during your collaboration with our service. Apply to them with questions about orders, rates, payments, and more. Contact our managers via our website or email.

Non-plagiarized papers

“Please, write my paper, making it 100% unique.” We understand how vital it is for students to be sure their paper is original and written from scratch. To us, the reputation of a reliable service that offers non-plagiarized texts is vital. We stop collaborating with authors who get caught in plagiarism to avoid confusion. Besides, our customers’ satisfaction rate says it all.

© 2022 Homeworkcrew.com provides writing and research services for limited use only. All the materials from our website should be used with proper references and in accordance with Terms & Conditions.

Scroll to Top