diff options
Diffstat (limited to 'Inclass-9/ReferenceExamples.cpp')
| -rw-r--r-- | Inclass-9/ReferenceExamples.cpp | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/Inclass-9/ReferenceExamples.cpp b/Inclass-9/ReferenceExamples.cpp index aaef1d6..bd90626 100644 --- a/Inclass-9/ReferenceExamples.cpp +++ b/Inclass-9/ReferenceExamples.cpp @@ -5,4 +5,25 @@ using std::cin; using std::cout; -using std::endl;
\ No newline at end of file +using std::endl; + +void Swap(int& x, int& y) +{ + + + +} + +void Standardize_101(int& n) +{ + + + // return n %= 101; +} + +void Square(int& x) +{ + + + +}
\ No newline at end of file |