To design a program, input a three digit ABC from the keyboard, and then input the numbers from right to left in turn, that is, output another three digit CBA I'm a novice on Baidu, I don't have so many points. Please help me solve the problem even if I offer a low reward Sorry, I didn't make it clear. I'm looking forward to seeing your answers

To design a program, input a three digit ABC from the keyboard, and then input the numbers from right to left in turn, that is, output another three digit CBA I'm a novice on Baidu, I don't have so many points. Please help me solve the problem even if I offer a low reward Sorry, I didn't make it clear. I'm looking forward to seeing your answers


# include
# include
main()
{ int a,b,c,n,m;
coutn;
a=n/100;
b=(n-a*100)/10;
c=(n-a*100)%10;
m=c*100+b*10+a;
cout



15 ABC can be divided by 36, and what are the minimum number of ABC?


a = 0 ,b = 1 ,c = 2



What are the values of a, B and C in order to make 6-digit.15abc6 divisible by 36 and get the smallest quotient? (a, B, C take different values)


In order to minimize the quotient, the divisor should also be the smallest, so a can be filled with 0 on the thousand digits; and because the divisor is a multiple of 4, the ten digits should be filled with 1, 3, 5, 7, 9; at this time, the corresponding hundreds should be filled with 5, 3, 1, 8, 6. The smallest one is 100 digits 1, and the ten digits correspond to 5. So a = 0, B = 1, C = 5. Answer: a = 0, B = 1, C = 5