4313 反向输出三位数
【题目描述】
小红有一个三位数,她想让聪明的你反向输出这个三位数。
【输入格式】
一个三位数n(99
using namespace std;
int main()
{
int a;
while( cin >> a)
{
int b = a % 10;
int c = a / 10 % 10;
int d = a / 100;
cout << b << c << d << endl;
}
return 0;
}
4313 反向输出三位数最先出现在Python成神之路。
共有 0 条评论