creating blank lines!! HELP

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>
using namespace std;
int main()
{

cout << "Two mandolins like creatures in the";
cout << "dark";
cout << "creating the agony of ecstasy.";
cout << "                          -George Barker";
return 0;

} 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
using namespace std;
int main()
{

cout << "Two mandolins like creatures in the\n\n";
cout << "dark\n\n";
cout << "creating the agony of ecstasy.\n\n";
cout << "                          -George Barker\n";

system("pause");
return 0;

} 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//newLines.cpp
//Output new lines.

#include <iostream>
using namespace std;
int main()
{

cout << "Two mandolins like creatures in the\n";
cout << "dark"<<'\n';
cout << "creating the agony of ecstasy."<<"\n";
cout << "                          -George Barker"<<endl;
return 0;

} 



Two mandolins like creatures in the
dark
creating the agony of ecstasy.
                          -George Barker
Topic archived. No new replies allowed.