【题目描述】
将一个三位数反向输出,例如输入358,反向输出853。
【输入】
一个三位数n。
【输出】
反向输出n。
【题解代码】
#include <iostream>
using namespace std;
int main()
{
int s;
cin >> s;
int a = s % 10; //个位
int b = s / 10 % 10; //十位
int c = s / 100; //百位
cout << a << b << c;
return 0;
}