何雪莹何雪莹何雪莹
何雪莹何雪莹何雪莹
题解
题解 | #数字反转之-三位数#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #数字反转之-三位数#
503 浏览
0 回复
2021-07-16
何雪莹何雪莹何雪莹
+关注
数字反转之-三位数
https://ac.nowcoder.com/acm/problem/22000
include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
cout<<n%10<<n/10%10<<n/100;
return 0;
}
举报
收藏
赞
评论加载中...