Question: #include #include using namespace std; int main ( ) { ofstream ofile; string input, separated; ofile.open ( phrases . txt ) ; cout

#include
#include
using namespace std;
int main()
{
ofstream ofile;
string input, separated;
ofile.open("phrases.txt");
cout << "Type the sentence (no spaces): ";
cin >> input;
separated = input[0];
for (int i =1; i < input.length(); i++){
char ch = input[i];
if (ch >='A' && ch <='Z'){
separated +='';
ch =(char)(ch -'A'+'a');
}
separated += ch;
}
cout << "Separated: "<< separated << endl;
ofile.close();
return 0;
} Modify the above program in C++ so it will accept several inputs until the user types STOP. All the sentences must be written to the file "phrases.txt".

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!