// Name: Asahel Lopez // Date: 2/6/24 // Class: CST 116 // Assignment: InClassExercise9 #include #include "ReferenceExamples.h" 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 << "Modded n = " << n << endl; Square(n); cout << "Squared n = " << n << endl; cout << " Size of an int" << sizeof(int); }