#include #include "Header.h" #include "Node.h" using std::cin; using std::cout; using std::endl; void Swap(Node* first, Node* second) { int test, test2; test = first->data; test2 = second->data; first->data = test2; second->data = test; cout << test << endl; } void Standardize_101(Node* newNode) { newNode->data = newNode->data % 101; } void Square(Node* nextNode) { nextNode->data = nextNode->data * nextNode->data; }