0
I'm trying to add two blank lines to my code after "Kristo". I'm trying to have my code come out as Kristo ------Papa
# include <iostream> using namespace std; int main() { cout << "Kristo------Papa"; return 0; }
3 Answers
0
Couldn't really show what Im trying to get in the title. But this is what my output should look like:
Kristo
------Papa
0
You mean like this?
cout <<
"Kristo ------Papa";
just add two spaces