Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Read the questions and comments provide a code solution, that coresspond with the code. On the screenshot there are variables there to use for the

Read the questions and comments provide a code solution, that coresspond with the code. On the screenshot there are variables there to use for the code. Put the code in the comments do NOT leave comments with no code. ColorFunctions.cpp #include "ColorFunctions.h"
#include
using namespace std;
void WriteHeader()
{
//put your name, course and program information
cout"Brayan Licano, C++11 and this is about swapping colors""on the sentences."
#include
#include
#include "Functions.h"
using namespace std; int main()
{// Display class header
displayClassHeader();
// Declare variables
SentenceData data;
vector vColors;
vector vPhrases;
// Set default filenames
string colorFile("Colors.txt");
string sentenceFile("Sentences.txt");
string swapPhrasesFile("SwapPhrases.txt");
string outputFile("Out.txt");
// Ask user for filenames or use defaults
getUserInputFilenames(colorFile, sentenceFile, swapPhrasesFile, outputFile);
// Call Read functions
// Call WriteOriginal function
ofstream outFile(outputFile);
writeOriginal(outFile, data.sentences, vColors, vPhrases);
// Call SwapColors function
int numModified = swapColors(data, vColors, vPhrases);
// Ask for output filename
// Open output results file and call WriteResults function
ofstream resultsFile(outputResultsFile);
writeResults(resultsFile, data, numModified);
// Display results to the user
displayResults(data, numModified);
// Display Good-bye message
displayGoodbyeMessage();
return 0;
}
image text in transcribed

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

Database Concepts

Authors: David M Kroenke, David J Auer

6th Edition

0132742926, 978-0132742924

More Books

Students also viewed these Databases questions