What I want to do is read a whole paragraph of text from a custom file. How would I do this without doing something silly like this?
while(someFile >> word1 >> word2 >> word3){
//etc.
}
I need to be able to read 3 numbers for todays date, then read a whole paragraph, then another whole paragraph, and then repeat it.