the problem is as follows my teacher wants me to:
write a program that reads lines of text into a string using the getline(cin,line) function and then type sets these lines of text so that they are column aligned on the left and right margins as shown in the second example above.
So it looks like this:
"Beware____the____Jabberwock,____my___son! without the underscores just wanted to put those in so you know what i mean by the spaces.
HELP ME PLEASE!! ive been working on it for liek 3 days i cannot get it for the life of me!!!
Just a guess, but could you just find the width of the column that you need to spread the text over as well as the width of each individual word, then divide to find out where each word should go? Then you could just insert blank spaces in between.
If not why not? I'm pretty inexperienced with C++ so I'd be curious to know what goes wrong.