Question: Suppose we wish to read student data in the form Jane Lee 100 98 97 100 Aaron X. Schmidt 37 42 49 54 Frank von




Suppose we wish to read student data in the form
Jane Lee 100 98 97 100 Aaron X. Schmidt 37 42 49 54 Frank von Tardy 2 3 10 7 ...
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.
#include
int main() { cout > input_file_name;
ifstream in; in.open(input_file_name);
char ch; while (in.get(ch)) { // Add the characters before the first digit // to the student's name. string student = ""; while (in && !isdigit(ch)) { student = student + ch; in.get(ch); } student = student.substr(0, student.length() - 1); // remove space at end
int total = 0;
// Add all of the numbers in the rest of the line. // Use the one-character look-ahead from the section "Reading Text Input" // Stop when the last character read is a ' '
/* Your code goes here */
cout
return 0; }
***Must use code given and be written in C++***
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 student's 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. II Add the characters before the first digit Il to the student's name. string student =" "; while (in \&\& !isdigit(ch)) \{ student = student + ch in.get (ch); \} student = student. substr(0, student. length ()1);// remove space at end int total =0 II Add all of the numbers in the rest of the line. II Use the one-character look-ahead from the section "Reading Text Input" Il Stop when the last character read is a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
