aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Hello World/Hello World/Program.cpp19
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