C++ . Write a program that finds the number of times a specific word appears in a text file.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
C++ . Write a program that finds the number of times a specific word appears in a text file. The program should accept the following inputs from the user: The word that you are looking for. The word length should be 3 or more otherwise the program should print Too short. The word should not have a space character. The name of the file that contains the text The type of the search 0 for case senstive search 1 for case insensitive search For any other input the program should output Invalid Note that the word should be preceded and succeeded by spaces. Note: Assume for all sample test cases that thecontent of F1.txt is: C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes". The language has expanded significantly over time, and modern C++ now has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation. It is almost always implemented as a compiled language, and many vendors provide C++ compilers, including the Free Software Foundation, LLVM, Microsoft, Intel, Oracle, and IBM, so it is available on many platforms.
10:23 E 0 1•
1/0
Program Input:
• A single line that takes in the word that
you are searching for
• A single line that takes in the name of
the file that contains the text
• A single line that takes in the type of
the search
Program Output:
• A single line that outputs either the
number of occurences of the word in
the textfile.
Sample Testcase 0:
Input:
C++
F1.txt
1
Output:
Sample Testcase 1:
Input:
C++
F1.txt
Output:
Sample Testcase 2:
Input:
C++
Transcribed Image Text:10:23 E 0 1• 1/0 Program Input: • A single line that takes in the word that you are searching for • A single line that takes in the name of the file that contains the text • A single line that takes in the type of the search Program Output: • A single line that outputs either the number of occurences of the word in the textfile. Sample Testcase 0: Input: C++ F1.txt 1 Output: Sample Testcase 1: Input: C++ F1.txt Output: Sample Testcase 2: Input: C++
10:23 B 0 1
Sample Testcase 2:
Input:
C++
F1.txt
2
Output:
Invalid
1
#include <jostream>
#include <fstream>
using namespace std;
6
int main()
7
{
char filename[20];// Use
this variable to read the name
8.
of the file that contains the
text.
9.
int mode;
10
string word;
11
cin>>word>>filename>>mode;
12
13
}
14
Submit
II
Transcribed Image Text:10:23 B 0 1 Sample Testcase 2: Input: C++ F1.txt 2 Output: Invalid 1 #include <jostream> #include <fstream> using namespace std; 6 int main() 7 { char filename[20];// Use this variable to read the name 8. of the file that contains the text. 9. int mode; 10 string word; 11 cin>>word>>filename>>mode; 12 13 } 14 Submit II
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY