diff options
| author | Levi <[email protected]> | 2022-10-05 18:47:49 -0700 |
|---|---|---|
| committer | Levi <[email protected]> | 2022-10-05 18:47:49 -0700 |
| commit | 898a139e812ffc8f22d159be5d6cb06c13a10119 (patch) | |
| tree | f9e579abffdfe978eb0ff837c29107a5bf87d494 | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0-levidavis04-898a139e812ffc8f22d159be5d6cb06c13a10119.tar.xz cst116-lab0-levidavis04-898a139e812ffc8f22d159be5d6cb06c13a10119.zip | |
done
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..77a5279 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,14 @@ -// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
+// CST116-BlankConsole.cpp : CST Lab0 Levi Davis This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
+using std::endl
+using std::cout
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!"endl;
+ cout << "My name is Levi Davis and my GitHub user is levidavis04" endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|