Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ PROGRAMMING RHYMES.CPP Write a program that finds rhyming words in a poem. Specifically, the program reads an input file, line by line, and extracts

C++ PROGRAMMING

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

RHYMES.CPP Write a program that finds rhyming words in a poem. Specifically, the program reads an input file, line by line, and extracts the last word in each line. It then compares this last word with the last word from the line after it. If it finds that the 2 words "rhyme" (which is simply defined as the 2 words that are being compared share the same 2 last letters), then it prints out these two words to standard output (i.e. the display). But FIRST, the words must be cleaned up of any non-alphabetical characters (usually this means puncuation, since many poems have their last lines often end with a comma, a semicolon, a question-mark, etc...) So if the last word on a line has punctuation marks on it, e.g "hello?!", it becomes "hello". Or if the last word is "don't", it becomes "dont". Finally, the program has to state how many rhyming pairs it found, or if it did not find any at all The program has to ask the user for the file name and has to check to see if the file exists (use the string "Enter file name: "for the question). If it does not exist, the program must output (via cerr) an error message: "Input file opening failed." and then exit with code 1

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_2

Step: 3

blur-text-image_3

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

Beginning VB 2008 Databases

Authors: Vidya Vrat Agarwal, James Huddleston

1st Edition

1590599470, 978-1590599471

Students also viewed these Databases questions

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago