Assignment:
void printBanner() – This function should open the file “banner.txt” in the same directory as the program, and print it’s contents to the terminal. It does not depend on any other functions.
void showMenu() – This function should print a menu to display the following options:
1. Enter an input file
2. Enter an output file
3. Clean input file
4. Quit
It does not depend on any other functions.
string getInputFile() – prompts the user for an input file name. Returns the user’s choice as a string. This function does not depend on any other functions.
string getOutputFile() – prompts the user for an output file name. Returns the user’s choice as a string. This function does not depend on any other functions.
Comments
Leave a comment