Spacing

I am having trouble figuring out how to get a space between my output screen. I may have several lines of output, but would like some of them to have an empty space between them. Can someone help me with this issue? Thanks
1
2
3
cout<<"line...."<<endl;
cout<<endl<<endl; //2 blank lines
cout<<"line2.."<<endl;
using namespace std;

cout<<"\n\n";
cout<<endl<<endl;

Both produce the same result.
Topic archived. No new replies allowed.