// Name: Yana Blashchishina // Date: 2/5/2024 // Class: CST116 // Assignment: Exercise 9 #include "ReferenceExamples.h" #include using std::cout; using std::endl; int main() { int x = 5, y = 72; Swap(x, y); std::cout << "x = " << x << ", y = " << y << endl; int n = 4392; Standardize_101(n); cout << "Moded n = " << n << endl; Square(n); cout << "Squared n = " << n << endl; cout << "Size of an int " << sizeof(int); return 0; }