aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp
diff options
context:
space:
mode:
authorMusa Ahmed <[email protected]>2022-10-05 16:36:12 -0700
committerMusa Ahmed <[email protected]>2022-10-05 16:36:12 -0700
commita957aa1c10a647bbe94daeb51e8cfa26ebe4b39c (patch)
treee1d4c95d9e058094c5afd2b4a3be912d3e02cd0d /CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp
parentinitial commit (diff)
downloadcst116-proj1-a957aa1c10a647bbe94daeb51e8cfa26ebe4b39c.tar.xz
cst116-proj1-a957aa1c10a647bbe94daeb51e8cfa26ebe4b39c.zip
one person
Diffstat (limited to 'CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp')
-rw-r--r--CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp29
1 files changed, 25 insertions, 4 deletions
diff --git a/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp b/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp
index b701ec9..61ec88f 100644
--- a/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp
+++ b/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp
@@ -4,6 +4,8 @@
#include <iostream>
#include <iomanip>
#include <string>
+#include <list>
+using namespace std;
using std::cout;
using std::cin;
using std::endl;
@@ -11,10 +13,29 @@ using std::string;
int main()
{
- string n1 = "";
- string n2 = "";
- string n3 = "";
- string n4 = "";
+ string n1;
+ string n2;
+ string n3;
+ string n4;
+
+ float g1;
+
+ int i1;
+
+
+
+ cout << "enter a name" << endl;
+ cin >> n1;
+
+ cout << "enter a gpa" << endl;
+ cin >> g1;
+
+ cout << "enter an income" << endl;
+ cin >> i1;
+
+
+
+