diff options
Diffstat (limited to 'Inclass-9/Program.cpp')
| -rw-r--r-- | Inclass-9/Program.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Inclass-9/Program.cpp b/Inclass-9/Program.cpp index 5b7fa73..014935d 100644 --- a/Inclass-9/Program.cpp +++ b/Inclass-9/Program.cpp @@ -27,7 +27,20 @@ int main() cout << newNode.data << endl;*/ + int x = 5, y = 72; + int n = 4392; + Swap(x, y); + + cout << "x = " << x << ", y = " << y << endl; + + Standardize_101(n); + + cout << "modded n = " << n << endl; + + Square(x); + + cout << "Squared x = " << x << " remember, x = the value of y now" << endl; return 0; |