diff options
| author | Musa Ahmed <[email protected]> | 2022-10-05 16:36:12 -0700 |
|---|---|---|
| committer | Musa Ahmed <[email protected]> | 2022-10-05 16:36:12 -0700 |
| commit | a957aa1c10a647bbe94daeb51e8cfa26ebe4b39c (patch) | |
| tree | e1d4c95d9e058094c5afd2b4a3be912d3e02cd0d /CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp | |
| parent | initial commit (diff) | |
| download | cst116-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.cpp | 29 |
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;
+
+
+
+
|