diff options
| author | austinlujan <[email protected]> | 2024-03-06 05:59:28 -0800 |
|---|---|---|
| committer | austinlujan <[email protected]> | 2024-03-06 05:59:28 -0800 |
| commit | dadee4410f6b9636c00df0c0fcafd335a6a0f9df (patch) | |
| tree | f70d7e1c985c256a4372db75e5a566310b419ebf | |
| parent | add deadline (diff) | |
| download | hello-world-austinlujan-dadee4410f6b9636c00df0c0fcafd335a6a0f9df.tar.xz hello-world-austinlujan-dadee4410f6b9636c00df0c0fcafd335a6a0f9df.zip | |
update
| -rw-r--r-- | Hello World/Hello World/Program.cpp | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/Hello World/Hello World/Program.cpp b/Hello World/Hello World/Program.cpp index bc4dd01..191d39d 100644 --- a/Hello World/Hello World/Program.cpp +++ b/Hello World/Hello World/Program.cpp @@ -1,10 +1,23 @@ -// Name: Arthur Spears -// Date: 1/1/24 +// Name: Austin Lujan +// Date: 1/22/24 // Class: CST116 -// Assignment: +// Assignment: Assignemnt +#include <iostream> + +using namespace std; int main() { + cout << "hello world " << endl; + + int number; + + cout << "enter a number and press enter: "; + + cin >> number; + + cout << "the number you entered is: " << number << endl; + return 0; }
\ No newline at end of file |