/***************************************************************************** * Outputs the reverse of an inputed three digit number. * * Inputed: a (three digit number) * * Outputed: a, b, c, d (the three digits of the reversed number) * * Written: September 28, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 12 //28SEP01 #include #include #include int main() { /* declaration of variables and setiosflags */ cout<>a; b=a/100; c=(a%100)/10; d=a%10; temp=d; d=b; b=temp; /* final output */ cout<<"Your Original Number:..."<