Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Suppose we wish to read student data in the form Jane Lee 1 0 0 9 8 9 7 1 0 0 Aaron X .
Suppose we wish to read student data in the form
Jane Lee
Aaron X Schmidt
Frank von Tardy
There is no need to use getline. Instead, use one while loop to process all of the lines in the file. Inside that loop, use two smaller loops: the first to read the name, and the second to add up the scores for that student. To read the name, use get to read until you encounter a digit, adding each character to the students name. To add the scores, write a second loop that processes the rest of the line. Use the onecharacter lookahead technique from the section "Reading Text Input" to read and sum the numbers.
Print the name and total score for each student.
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