#include "ReferenceExamples.h" void Swap(int& x, int& y) { int temp = x; x = y; y = temp; } void Standardize_101(int& n) { n %= 101; } void Square(int& x) { x *= x; }