Use endl instead of hardcoded newline in c++.cpp

This commit is contained in:
Robert Wohlrab
2007-12-01 14:30:50 +01:00
parent bd314bbdd4
commit 9cbc51a781

View File

@@ -2,5 +2,5 @@
using namespace std;
int main(){
cout << "Hello World\n";
cout << "Hello World" << endl;
}