#include #include "ReferenceExamples.h" using std::cout; using std::endl; void Swap(int& x, int& y) { cout << "x = " << x << " , y = " << y << endl; } void Standardize_101(int& n) { n %=101; } void Square(int& x) { x*= x; }