diff options
| author | BensProgramma <[email protected]> | 2021-11-07 12:56:22 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-07 12:56:22 -0800 |
| commit | 5ac080e57455d90853cfe929901794beacccf2da (patch) | |
| tree | ad7e49d9b6e61eaffc7a83e394cb14d1682b9f2f | |
| parent | Update Project2_Fhernandez_BSchroeder.cpp (diff) | |
| download | project2_fhernandez_bschroeder-5ac080e57455d90853cfe929901794beacccf2da.tar.xz project2_fhernandez_bschroeder-5ac080e57455d90853cfe929901794beacccf2da.zip | |
Update Project2_Fhernandez_BSchroeder.cpp
| -rw-r--r-- | Project2_Fhernandez_BSchroeder/Project2_Fhernandez_BSchroeder.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Project2_Fhernandez_BSchroeder/Project2_Fhernandez_BSchroeder.cpp b/Project2_Fhernandez_BSchroeder/Project2_Fhernandez_BSchroeder.cpp index 021cde0..da0d29b 100644 --- a/Project2_Fhernandez_BSchroeder/Project2_Fhernandez_BSchroeder.cpp +++ b/Project2_Fhernandez_BSchroeder/Project2_Fhernandez_BSchroeder.cpp @@ -95,7 +95,9 @@ // //Testing Plan: // Testing consists of running each function 1 thru 7 with 3 possibilities.Positive and negative numbers, and zero. -// The outputs should handle all three cases. Test runs are included in the accompanying .txt file +// The outputs should handle all three cases. Options 8 and 9 should display the respective Table without asking for +// a number input from the user. Option 10 should display a goodbye message. +// Test runs are included in the accompanying .txt file // // // @@ -173,7 +175,7 @@ // //////////////////////////////////////////// // void NumDigits(number) -// Every digit adds a factor OF 10 to the number... +// Every digit adds a factor OF 10 to the number... // Dividing "number" by 10 and counting how many times we do this while the number is still >=1 // will give us how many digits the original number had. // count = 0 @@ -214,7 +216,7 @@ // ////////////////////////////////////////////////// // void DisplayMultiplicationTable() -// Similar to the addition table except with the contents being multiplication results +// Similar to the addition table except with the contents being multiplication results // Then call DisplayMenu() to start the program back through // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |