420468 2512078.qx3zay7 Consider a comma-separated file that contains student names and scores such as the following: Jane Lee, 100, 98, 97, 100 Aaron X. Schmidt, 37, 42, 49, 54 Frank von Tardy, 2, 3, 10, 7 We can read the file one line at a time and use an istringstream object to process the scores. To get the position of the first comma, simply read words from the input stream until the word ends with a comma. Then, read and sum the numbers remaining on the line. Use get to remove the commas following each number. Rearrange the lines below to compute the total score for a single student. Assume that each student has at least one score. Mouse: Drag/drop Keyboard: Grab/release [Spacebar (or Enter). Move 100. Cancel Esc Unused total total + score; while (getline(in_file, line)) in.str(line); in >> word; char ch; in.get(ch); in >> word; while (word [word.size()-1] != ',') total = 0; while (in >> score) istringstream in; } } main.cpp #include #include #include using namespace std; int main() { ifstream in file; in_file.open("scores.txt"); string line; int total; int score; string word; Load default template... cout << "Total score: " << total << endl; } return 0;

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter13: File Input And Output
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question
CHALLENGE
ACTIVITY
420468 2512078.qx3zqy7
Consider a comma-separated file that contains student names and scores such as the following:
Jane Lee, 100, 98, 97, 100
Aaron X. Schmidt, 37, 42, 49, 54
Frank von Tardy, 2, 3, 10, 7
8.19.4: Rearrange the lines to compute the total score for a single student.
We can read the file one line at a time and use an istringstream object to process the scores. To get the position of the first
comma, simply read words from the input stream until the word ends with a comma. Then, read and sum the numbers remaining
on the line. Use get to remove the commas following each number.
Rearrange the lines below to compute the total score for a single student. Assume that each student has at least one score.
Mouse: Drag/drop
Keyboard: Grab/release Spacebar (or Enter). Move 100. Cancel Esc
Unused
total= total + score;
while (getline(in_file, line))
in.str(line);
in >> word;
char ch;
in.get(ch);
in >> word;
while (word [word.size()-1] != ',')
total = 0;
while (in >> score)
istringstream in;
}
}
Check
main.cpp
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
int main()
{
ifstream in_file;
in_file.open("scores.txt");
string line;
int total;
int score;
string word;
Load default template...
cout << "Total score: " << total << endl;
}
return 0;
Feedback?
Transcribed Image Text:CHALLENGE ACTIVITY 420468 2512078.qx3zqy7 Consider a comma-separated file that contains student names and scores such as the following: Jane Lee, 100, 98, 97, 100 Aaron X. Schmidt, 37, 42, 49, 54 Frank von Tardy, 2, 3, 10, 7 8.19.4: Rearrange the lines to compute the total score for a single student. We can read the file one line at a time and use an istringstream object to process the scores. To get the position of the first comma, simply read words from the input stream until the word ends with a comma. Then, read and sum the numbers remaining on the line. Use get to remove the commas following each number. Rearrange the lines below to compute the total score for a single student. Assume that each student has at least one score. Mouse: Drag/drop Keyboard: Grab/release Spacebar (or Enter). Move 100. Cancel Esc Unused total= total + score; while (getline(in_file, line)) in.str(line); in >> word; char ch; in.get(ch); in >> word; while (word [word.size()-1] != ',') total = 0; while (in >> score) istringstream in; } } Check main.cpp #include <iostream> #include <fstream> #include <sstream> using namespace std; int main() { ifstream in_file; in_file.open("scores.txt"); string line; int total; int score; string word; Load default template... cout << "Total score: " << total << endl; } return 0; Feedback?
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning