diff options
Diffstat (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp')
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..854c85f 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,15 @@ +// Andrei Florea - CST 116 - Lab0 - Editing code
// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "My name is Andrei Florea and my GitHub username is andr3i-f." << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|