Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please fix my code to solve the problem. C++ #include #include #include #include using namespace std; int main () { ifstream ifs(input.txt, ifstream:: in); ofstream

Please fix my code to solve the problem. C++image text in transcribed

#include

#include

#include

#include

using namespace std;

int main () {

ifstream ifs("input.txt", ifstream:: in);

ofstream ofs("output.txt", ofstream::trunc);

double sum = 0;

int count = 0;

ifs.seekg(0, ios::beg);

while(ifs) {

double year;

ifs >> year;

double age = 2018 - year;

sum+= age;

ofs

count++;}

ofs

ifs.close();

ofs.close();

return 0; }

for different Problem 3 [10pt] . You are given a file called input.dat containing data records for different people, listed one per ine. Each record has the following format full name lbirth year. For example, the content of the file may be content of the Ble may be s the following format ru1i James Doe 1978 Lisa Smith|1988 Alex Taylorl 1997 Write a program which reads the file input.txt and produces a file output.txt which contains information about the age of each person from input.txt, followed by a line containing the text "Average age followed by the average age of people in input.txt (which should be output with the precision set to 1). For example, using the input.txt as above, the output.txt should be as follows 40 30 21 Average age: 30.3 Remarks. 1) You may assume that all header files are included. 2) You may assume that the input.dat contains at least one record. 3) To compute the age assume that the current year is 2018. 4) You may continue your solution onto the next page

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

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

The company openly shares plans and information with employees.

Answered: 1 week ago