diff options
| author | JacobAKnox <[email protected]> | 2021-11-08 11:25:22 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-08 11:25:22 -0800 |
| commit | b96abf28ddc2ec927a362bb893a6366ddf6409cf (patch) | |
| tree | cbb0e5e1847c934aec12642b48a037cb4c05be46 | |
| parent | Adding my work so far (diff) | |
| parent | Create Austin's Project 2 split (diff) | |
| download | cst116proj2-1-jacob-k-and-austin-g-b96abf28ddc2ec927a362bb893a6366ddf6409cf.tar.xz cst116proj2-1-jacob-k-and-austin-g-b96abf28ddc2ec927a362bb893a6366ddf6409cf.zip | |
Merge pull request #3 from austinsworld15/patch-3
Create Austin's Project 2 split
| -rw-r--r-- | Austin's Project 2 split | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Austin's Project 2 split b/Austin's Project 2 split new file mode 100644 index 0000000..48ab34c --- /dev/null +++ b/Austin's Project 2 split @@ -0,0 +1,17 @@ +#include "Voids.h" +#include <iostream> + +int main() +{ + int Number = 0; + + int Digit = 0; + + int Position = 0; + + GetData(Number); + + IsOddEven(Number); + + FindDigitAtPosition(Digit, Position, Number); +} |