Answered step by step
Verified Expert Solution
Link Copied!

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 1009897100
Aaron X. Schmidt 37424954
Frank von Tardy 23107
...
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 one-character look-ahead 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions