Space down one line:

cout << "\nThis is Sam Cooke.\n";
cout << numberxx << " (years old)\n";

cout << agexx;
security = 5;

I am trying to space down one line between numberxx and agexx cout?
closed account (E0p9LyTq)
Either

std::cout << numberxx << " (years old)\n\n";

or

std::cout << '\n' << agexx << '\n';
Topic archived. No new replies allowed.