/***************************************************************************** * Outputs a two digit number in reverse order. * * Inputed: a (two-digit number) * * Outputed: b (last digit in number), c (first digit in number) * * Written: September 26, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 10 //26SEP01 #include #include #include int main() { int a=0, b=0, c=0, temp=0; cout<<"Please enter the number you wish to reverse."<>a; b=a/10; c=a%10; temp=b; b=c; c=temp; cout<<"Your number in reverse order is "<