Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C++ program that acts like a simple counting tool for collecting information from textual files of documents prepared for a simple scripting language

Write a C++ program that acts like a simple counting tool for collecting information from textual files of documents prepared for a simple scripting language interpreter. An input file for the simple scripting interpreter includes two types of data, commented lines and scripting code lines. A commented line is recognized by either the two characters ## or // at the beginning of the line, which would be skipped by the scripting interpreter. All other non-commented lines are considered as part of the scripting code, including any blank lines with whitespace. The program for the simple counting tool should read lines from a file until the end of file. The program should prompt the user for the file name to read from. The program should open the file for reading, and if the file cannot be opened, it should print the message "File cannot be opened ", followed by the filename, and exit. After reading the contents of the input file, the program should print out the total number of lines, the number of commented lines, the maximum length of commented lines, the maximum length of non-commented lines, the commented line of maximum length delimited by double quotes, and the non-commented line of maximum length delimited by double quotes.

See the examples in the presentation slides for the expected output format.

image text in transcribed

infile2.txt file:

image text in transcribed

Notes: - The example assumes that the file name is entered from the keyboard. - There are 13 lines in this input file. - The screen pointer is at a new line after displaying the results. - You have to apply the same format in order to have exact match. \begin{tabular}{r|l|} 1 & run prog1 \\ 2 & // \\ 3 & delete \\ 4 & \#\# execute next command \\ 5 & delete myfile \\ 6 & \\ 7 & \\ 8 & copy file1 file2 \\ 9 & \\ 10 & /I welcome to cs 280 \\ 11 & print myfile \\ 12 & \\ 13 & // terminate script \\ 14 & \end{tabular}

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

Concepts of Database Management

Authors: Philip J. Pratt, Mary Z. Last

8th edition

1285427106, 978-1285427102

More Books

Students also viewed these Databases questions

Question

305 mg of C6H12O6 in 55.2 mL of solution whats the molarity

Answered: 1 week ago