#include #include #include "swapit.h" using namespace std; int main() { int x, y; cout << "Please enter an integer: "; cin >> x; cout << "Please enter another integer: "; cin >> y; swapit(x, y); cout << "The first integer is now " << x << " and the second is " << y << endl; string s, t; cout << "Please enter a string: "; cin >> s; cout << "Please enter another string: "; cin >> t; swapit(s, t); cout << "The first string is now " << s << " and the second is " << t << endl; return 0; }