+ 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; }
7 Respostas
+ 6
First:
#include <iostream>
Second:
using namespace std;
3th:
int main()
And finally:
U need to write this:
system("pause");
return 0;
+ 3
#
include
<iostream>
using
namespace std;
int
main()
{
cout << "I love C++" << endl;
return
0;
}
+ 1
#include
<iostream>
using
namespace std;
int
main()
{
cout << "I love C++" << endl;
return
0;
}
0
First: #include <iostream>
Second: using namespace std;
3th: int main()
And finally: return
0
Cual es el espacio de nombres no entiendo.
0
include
using
int
return
0
#include <iostream>
Second:
using namespace std;
3th:
int main()
And finally:
U need to write this:
system("pause");
return 0;