I need this Code By C++ Please stick to the code at the bottom of the page Just By C++. The file text.txt contains a sentence text written in all small letters and does not have any punctuation marks, no numbers, no symbols except for spaces. You are required to write a program which accepts an operation code, and zero to two inputs depending on the operation code. Based on the operation code, you will call three versions of the overlaoded function textProcessing as follows: Operation 0: The function removes all vowels from the ORIGINAL sentence. The vowels considered are the small letters (a, e, i, o, u y, and w). Operation 1: The code further asks for one lowercase letter to be input by the user. If the character is not a lower case letter, the code outputs Invalid. The function returns the distance (difference) between the letter first occurence and last occurence in the text. If the letter does not occur in the sentence, it returns 0. Operation 2: The code asks for two lowercase letters to be input by the user. If the characters are not lower case letters, the code outputs Invalid. The function replaces the original letter by the new letter in the ORIGINAL string. Any other opcode: the code outputs Invalid.

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
I need this Code By C++ Please stick to the code at the bottom of the page Just By C++. The file text.txt contains a sentence text written in all small letters and does not have any punctuation marks, no numbers, no symbols except for spaces. You are required to write a program which accepts an operation code, and zero to two inputs depending on the operation code. Based on the operation code, you will call three versions of the overlaoded function textProcessing as follows: Operation 0: The function removes all vowels from the ORIGINAL sentence. The vowels considered are the small letters (a, e, i, o, u y, and w). Operation 1: The code further asks for one lowercase letter to be input by the user. If the character is not a lower case letter, the code outputs Invalid. The function returns the distance (difference) between the letter first occurence and last occurence in the text. If the letter does not occur in the sentence, it returns 0. Operation 2: The code asks for two lowercase letters to be input by the user. If the characters are not lower case letters, the code outputs Invalid. The function replaces the original letter by the new letter in the ORIGINAL string. Any other opcode: the code outputs Invalid.
1:53 E-
I/O
Program Input:
• A single line that takes in an operation
code.
• Zero or one or two lower case letters
depending on the operation code
Program Output:
• Depends on the function called and as
specified above
Sample Testcase 0:
Suppose the content of the file "text.txt" is:
the earth is a very small stage in a vast
cosmic arena
Input:
Output:
th rth s vr smll stg n vst csmc rn
Sample Testcase 1:
Suppose the content of the file "text.txt" is:
the earth is a very small stage in a vast
cosmic arena
Input:
1
Output:
48
Transcribed Image Text:1:53 E- I/O Program Input: • A single line that takes in an operation code. • Zero or one or two lower case letters depending on the operation code Program Output: • Depends on the function called and as specified above Sample Testcase 0: Suppose the content of the file "text.txt" is: the earth is a very small stage in a vast cosmic arena Input: Output: th rth s vr smll stg n vst csmc rn Sample Testcase 1: Suppose the content of the file "text.txt" is: the earth is a very small stage in a vast cosmic arena Input: 1 Output: 48
Sample Testcase 2:
Suppose the content of the file "text.txt" is:
the earth is a very small stage in a vast
cosmic arena
Input:
2
a
A
Output:
the eArth is A very smAll stAge in A vAst
cosmic ArenA
1
#include <iostream>
#include <fstream>
3
#include <string>
4
5 using namespace std;
6.
7
void textProcessing(string
&inputstring);
int textProcessing (const
8
string &inputString, char
letter);
void textProcessing (string
&inputstring, char orgChar,
char newChar);
10
11
int main () {
unsigned short operation;
cin >> operation;
12
13
14
15
string sentence;
16
fstream inputstream;
17
inputstream.open("text.txt");
18
19
while (!inputstream.eof(0)
{
20
21
getline (inputstream,
sentence);
22
if (sentence.length()
> 0) {
23
24
// Your code
starts here
25
26
// Your code ends
here
27
28
29 }
30
31
// Your functions
implementation start here
32
33
34 // Your functions
implementation end here
Transcribed Image Text:Sample Testcase 2: Suppose the content of the file "text.txt" is: the earth is a very small stage in a vast cosmic arena Input: 2 a A Output: the eArth is A very smAll stAge in A vAst cosmic ArenA 1 #include <iostream> #include <fstream> 3 #include <string> 4 5 using namespace std; 6. 7 void textProcessing(string &inputstring); int textProcessing (const 8 string &inputString, char letter); void textProcessing (string &inputstring, char orgChar, char newChar); 10 11 int main () { unsigned short operation; cin >> operation; 12 13 14 15 string sentence; 16 fstream inputstream; 17 inputstream.open("text.txt"); 18 19 while (!inputstream.eof(0) { 20 21 getline (inputstream, sentence); 22 if (sentence.length() > 0) { 23 24 // Your code starts here 25 26 // Your code ends here 27 28 29 } 30 31 // Your functions implementation start here 32 33 34 // Your functions implementation end here
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

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