I'm taking a programming class in school and this is all very new to me.
My homework question is to make it show 2 blank lines between each line of text. I can't seem to find it in the textbook anywhere or online. I think it might be /n? or something like that.
Heres the problem ::
1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream>
usingnamespace std;
int main()
{
cout << "Two mandolins like creatures in the";
cout << "dark";
cout << "creating the agony of ecstasy.";
cout << " -George Barker";
return 0;
}