help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

help

Please fill in the missing parts of the code to print "I love C++" on the screen. # <iostream> namespace std; main() { cout << "I love C++" << endl; 0; }

29th Nov 2017, 8:32 PM
Daniel Assakura
Daniel Assakura - avatar
7 Answers
+ 6
First: #include <iostream> Second: using namespace std; 3th: int main() And finally: U need to write this: system("pause"); return 0;
29th Nov 2017, 9:52 PM
stKhaDgar
stKhaDgar - avatar
+ 3
# include <iostream> using namespace std; int main() { cout << "I love C++" << endl; return 0; }
17th Nov 2020, 1:34 PM
Abduvosi Abdugafforov
Abduvosi Abdugafforov - avatar
+ 1
#include <iostream> using namespace std; int main() { cout << "I love C++" << endl; return 0; }
3rd Feb 2021, 8:31 AM
Lilis lestari sinurat
Lilis lestari sinurat - avatar
0
First: #include <iostream> Second: using namespace std; 3th: int main() And finally: return
5th Jan 2018, 2:37 AM
Orujekwe Joseph
Orujekwe Joseph  - avatar
0
Cual es el espacio de nombres no entiendo.
7th Jan 2021, 4:38 AM
Elizabeth Lan
Elizabeth Lan - avatar
0
include using int return
28th Jan 2021, 2:43 PM
Sajeena.J
Sajeena.J - avatar
0
#include <iostream> Second: using namespace std; 3th: int main() And finally: U need to write this: system("pause"); return 0;
19th Nov 2021, 3:14 PM
Muhammadqodir Mahammadov
Muhammadqodir Mahammadov - avatar