Here is the question without the "ugly code".

I'm trying to write a multi-line answer in a multiple choice quiz, how can I do this and preserve the formatting (indents, etc.).
Which of the following does NOT perform the following task: print correct if answer is equal to 7 and incorrect if answer is not equal to 7?
a. if ( answer == 7 )
cout << "correct";
else
cout << "incorrect";
And while I'm asking questions, is there a way to default the number of multiple choice answers to 4 before having to add more blank answers?
Thanks,
John
P.S. Apparently, I can't indent the answers even here. While this isn't AS important for a C++ course, it is important in a Python, so any help will be appreciated.