Edit the following code to read the input for 10 students from a file testData1.txt and output the average of scores for 10 students using a loop.   #include using namespace std; #include int main(){ string name1,name2,name3; double score1,score2,score3; char c1,c2,c3; double avg; ifstream inputFile; ofstream outputFile; inputFile.open("testData1.txt"); outputFile.open("Results.txt"); inputFile.clear(); inputFile>>name1>>score1>>c1; inputFile.clear(); inputFile.ignore(200,'\n'); inputFile>>name2>>score2>>c2; inputFile.clear(); inputFile.ignore(200,'\n'); inputFile>>name3>>score3>>c3; avg =(score1 + score2 +score3)/3.0; outputFile << endl<

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 2PP: (Data processing) a. Store the following data in a file, or use the numbers.dat file provided on...
icon
Related questions
Question

Edit the following code to read the input for 10 students from a file testData1.txt and output the average of scores for 10 students using a loop.

 

#include <fstream>
using namespace std;
#include <iomanip>
int main(){
string name1,name2,name3;
double score1,score2,score3;
char c1,c2,c3;
double avg;
ifstream inputFile;
ofstream outputFile;

inputFile.open("testData1.txt");
outputFile.open("Results.txt");
inputFile.clear();
inputFile>>name1>>score1>>c1;

inputFile.clear();
inputFile.ignore(200,'\n');
inputFile>>name2>>score2>>c2;
inputFile.clear();
inputFile.ignore(200,'\n');

inputFile>>name3>>score3>>c3;

avg =(score1 + score2 +score3)/3.0;


outputFile << endl<<setw(20)<<left<<"Name" <<setw(20)<<"Score"<<setw(20)<<left<<"School Year";
outputFile << endl<<setw(20)<<left<<"----" <<setw(20)<<"-----"<<setw(20)<<left<<"-----------";
outputFile << endl<<setw(20)<<left<<name1 <<setw(20)<<score1<<setw(20)<<left<<c1;
outputFile << endl<<setw(20)<<left<<name2 <<setw(20)<<score2<<setw(20)<<left<<c2;
outputFile << endl<<setw(20)<<left<<name3 <<setw(20)<<score3<<setw(20)<<left<<c3;


outputFile << "\n\nAverage score is "<<fixed<<showpoint<<setprecision(2)<<avg<<endl;
inputFile.close();
outputFile.close();
}

 

Suppose testDat1.txt has following info

 

Rose 6.1 Senior
Nate 2.1 J
Kim 2.3 Freshman
Robert 10 Junior
Kale 9 F
Netalie 8 Senior
Melanie 10 J
Elan 1 F
Tom 7 J
Keen 10 S

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
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