diff options
| -rw-r--r-- | CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp b/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp index 9adc2eb..17aa017 100644 --- a/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp +++ b/CST116-Ch5-Debugging/CST116-Ch5-Debugging.cpp @@ -68,6 +68,10 @@ using std::endl; int main()
{
+ cout << "Joe Traver" << endl;
+ cout << "CST 116" << endl;
+ cout << "Github ID - joetraver30" << endl;
+
float money = 123.45F;
float raise;
|