/***************************************************************************** * Outputs two inputted integers in reverse of how they were inputed. * * Inputed: first (first integer), second (second integer) * * Outputed: first (contains the second #), second (contains first #) * * Written: October 1, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 14 //01OCT01 #include #include #include int main() { /* variable declaration and I/O Mannipulation */ cout<>first; cout<<"Please enter another integer:"<>second; /* cal code */ temp=second; second=first; first=temp; /* output */ cout<<"Your New Order Is:"<