diff options
| author | austinsworld15 <[email protected]> | 2021-11-09 18:40:52 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-09 18:40:52 -0800 |
| commit | 3815b26614f1fb5d7592ef7e35b29ba206fcb12f (patch) | |
| tree | eef277884af26098bc4ae94627e7d79acfb2e550 | |
| parent | Merge pull request #1 from austinsworld15/patch-1 (diff) | |
| download | cst116proj2-1-jacob-k-and-austin-g-3815b26614f1fb5d7592ef7e35b29ba206fcb12f.tar.xz cst116proj2-1-jacob-k-and-austin-g-3815b26614f1fb5d7592ef7e35b29ba206fcb12f.zip | |
Update KnoxFunctions.cpp
| -rw-r--r-- | KnoxFunctions.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/KnoxFunctions.cpp b/KnoxFunctions.cpp index c006e32..07e9d1c 100644 --- a/KnoxFunctions.cpp +++ b/KnoxFunctions.cpp @@ -34,15 +34,21 @@ void ProcessMenuChocie(int chocie, int& value) IsPosNeg(value); break; case 2: + GetData(Number); + break; case 3: digits = FindNumDigits(value); cout << value << " has " << digits << " digits.\n"; break; case 4: + IsOddEven(Number); + break; case 5: DisplayAdditonTable(); break; case 6: + FindDigitAtPosition(Digit, Position, Number); + break; case 7: return; default: |