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成神之路

版权声明:
作者:主机优惠
链接:https://www.techfm.club/p/14741.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>