Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

I tried all the other answers on this site but none of them worked. please don't copy those answers and post them here. I will

image text in transcribedI tried all the other answers on this site but none of them worked. please don't copy those answers and post them here. I will be sure to upvote you. Thank you

Write a C++ program that identifies and counts words and special names in a textual file. There are two kinds of special names considered, called Type 1 and Type 2 names. Counting is applied on all occurrences of words and specialized names. A word is defined as a sequence of one or more non-whitespace characters separated by whitespace. The special names of Type 1 and Type 2 are identified by a special character at the beginning of the name. Type 1 names must start by a ' $ ' character, while Type 2 names must start by @ character. All Type 1 and Type 2 names should consist of a letter following the special start character, followed by zero or more letters, digits or underscores. For example, \$value, @val9, \$num_234_ten, and @num_45 are valid Type 1 and Type 2 names, but \$9val, and @_num, \$num\$ are not. The program may accept one or two command line arguments. The format of the command line arguments is specified as follows: - The first argument must be a file name. - The second optional argument is for one of the following flags: - "-all": the program displays the total number of words, the number of Type 1 names, and the number of Type 2 names. - "-type1": the program displays the number of Type 1 names only. - "-type2": the program displays the number of Type 2 names only. If no file name is provided, the program should print on a new line " NO SPECIFIED INPUT FILE NAME.", and exit. If the file cannot be opened, print on a new line " CANNOT OPEN THE FILE", followed by the file name, and exit. The program should read from the file lines until the end of file is found. If the input file is empty, it prints out the message "File is empty." on a new line and then exits. In case the command line does not include any of the optional flags, the program should display the total number of words, and the total of Type 1 and Type 2 names. If an optional flag argument is not recognized, the program should print out the message "UNRECOGNIZED FLAG

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions