0
What am i wrong
#include <iostream> using namespace std; int main() { string smiley = " @@@@ @@@@\n @@@@@@ @@@@@@\n. @@@@@@ @@@@@@\n @@@@ @@@@\n\n\n\n@ @\n @@ @@\n @@@ @@@\n @@@@@ @@@@@\n @@@@@@@@@@@@@\n"; cout << smiley; }
2 Answers
+ 2
It works, but I removed some newlines (not the \n) out of the code. The complete string must logically be on one line in the program.
+ 1
return statement missing