Pls help pass this level in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Pls help pass this level in c++

#include <iostream> using namespace std; int main() { string smiley = " @@@@ @@@@\n @@@@@@ @@@@@@\n @@@@@@ @@@@@@\n @@@@ @@@@\n\n\n\n@ @\n @@ @@\n @@@ @@@\n @@@@@ @@@@@\n @@@@@@@@@@@@@\n"; }

18th Dec 2022, 2:54 PM
Ikpoba Eromoe Destiny
6 Answers
+ 8
//Hey just add cout for displaying the output cout << smiley;
18th Dec 2022, 2:57 PM
Suparna Das
Suparna Das - avatar
+ 5
//Ikpoba Eromoe Destiny try this #include <iostream> using namespace std; int main() { string smiley = " @@@@ @@@@\n @@@@@@ @@@@@@\n @@@@@@ @@@@@@\n @@@@ @@@@\n\n\n\n@ @\n @@ @@\n @@@ @@@\n @@@@@ @@@@@\n @@@@@@@@@@@@@\n"; //You have to put cout function within the code block for displaying the output cout <<smiley; }
18th Dec 2022, 3:00 PM
Suparna Das
Suparna Das - avatar
19th Dec 2022, 3:12 PM
Noob Coder
Noob Coder - avatar
+ 1
//Hey just add cout for displaying the output cout << smiley; #include <iostream> using namespace std; int main() { string smiley = " @@@@ @@@@\n @@@@@@ @@@@@@\n @@@@@@ @@@@@@\n @@@@ @@@@\n\n\n\n@ @\n @@ @@\n @@@ @@@\n @@@@@ @@@@@\n @@@@@@@@@@@@@\n"; //You have to put cout function within the code block for displaying the output cout <<smiley; } 18th Dec 2022, 3:00 PM Suparna Das Suparna Das - avatar 0 #include <iostream> using namespace std; int main() { string smiley = " @@@@ @@@@\n @@@@@@ @@@@@@\n @@@@@@ @@@@@@\n @@@@ @@@@\n\n\n\n@ @\n @@ @@\n @@@ @@@\n @@@@@ @@@@@\n @@@@@@@@@@@@@\n"; }
20th Dec 2022, 12:20 AM
Raegan Jackson
Raegan Jackson - avatar
0
#include <iostream> using namespace std; int main() { string smiley = " @@@@ @@@@\n @@@@@@ @@@@@@\n @@@@@@ @@@@@@\n @@@@ @@@@\n\n\n\n@ @\n @@ @@\n @@@ @@@\n @@@@@ @@@@@\n @@@@@@@@@@@@@\n"; }
18th Dec 2022, 2:55 PM
Ikpoba Eromoe Destiny
0
I tried but e didn't work
18th Dec 2022, 2:59 PM
Ikpoba Eromoe Destiny