[SOLVED] C++: Is there any way to insert a blank line after user input? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

[SOLVED] C++: Is there any way to insert a blank line after user input?

I'm writing a program in C++ that requires input in multiple locations of the program. Right now if I run it in Code::Blocks (where it prints line per line), the output is just one block of text for example: Enter a number. 2 (user input) Enter another number. But I was wondering if a blank line can be placed between the 2 in my example and the next user input prompt? I've tried cout << endl << endl; cout << "\n\n"; but neither seem to work. Thanks!

2nd Jul 2018, 9:55 PM
N@G3
N@G3 - avatar
2 Answers
+ 5
N@G3 try cout << " "; or cout << "\t\t";
2nd Jul 2018, 10:17 PM
Manual
Manual - avatar
+ 5
Okay, I forgot to put the code after the first user input which is why there was no blank line there and it looked like it didn't work 😆 (time for a break lol) Either cout << endl; or cout << "\n"; works fine!
2nd Jul 2018, 10:30 PM
N@G3
N@G3 - avatar