Solved-Lab 02 File I/O -Solution

$35.00 $24.00

Goals Gain experience with file I/O in C++ In this lab, we will implement a program that reads a file filled with letters, count the letter frequencies in the file, and write the results to a new file. Requirements Input File For simplicity, you can download this example file as the input file: file_fun.txt Preview…

You’ll get a: . zip file solution

 

 
Categorys:

Description

5/5 – (2 votes)

Goals

Gain experience with file I/O in C++

In this lab, we will implement a program that reads a file filled with letters, count the letter frequencies in the file, and write the results to a new file.

Requirements

Input File

For simplicity, you can download this example file as the input file: file_fun.txt

Preview the document, or, you can also create your own input files.

File should consist of only ‘a’ – ‘z’, ‘A’ – ‘Z’, space character, newline characters.

Program

Your program should first ask for the file the user would like to read, then read the file chosen by the user. The program will continue counting letters until the EOF (end of file) character. For each paragraph in the input file, the program should count the frequency of each letters, ask user what filename to output to, then proceed to output the frequencies to the file. Each paragraph should have its own output file.

Note: The letter counting disregards the upper/lower case differences. This means, capitalized letter ‘F’ is treated like ‘f’, and counted toward frequency of ‘f’.

Note: the paragraphs are separated by newline characters.

So, the following input file means 3 paragraphs: (not counting the quotation mark)

“Hello I am a CS major

I am having fun

This is a placeholder”

The format of the output file is as follows:

a: 3

b: 0

c: 1

d: 0

……

z: 0

Functions

The following is the functions of the program. You can make more function if you would like.

void count_letters(ifstream &, int*);
void output_letters(ofstream&, int*);
The requirements of each functions are specified below.

void count_letters(ifstream &, int*)

count_letter function takes an input file stream variable, and a pointer to an array of integers.

The function first reads the paragraph string from the input file stream, then counts the letter frequencies of that paragraph, and store the frequencies in the array. Disregards upper/lower case letters.

void output_letters(ofstream &, int*)

output_letters function takes an output file stream variable, and a pointer to an array of integers that contains frequencies of letters.

The function first asks user for the filename the user would like to output to, then outputs the frequencies of letters to the output file in the format specified above.

File I/O

If the program fails to open input file, then the program can either terminate, or recovers from error and re-prompt user for a new file name.