解题:反转数字
2023-07-17 23:50:02
发布于:广东
23阅读
0回复
0点赞
空降坐标:CP002975
请看代码
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,t,ans=0;
cin>>n;
t=n;
while(t>0)
{
ans=ans*10+t%10;
t/=10;
}
cout<<ans;
return 0;
}
这里空空如也
有帮助,赞一个