ikun函数
2023-07-08 21:13:21
发布于:广东
9阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int ikun/*回文函数*/(int num){
int t=0;
int temp=num;
while(temp)
{
t=t*10+temp%10;
temp/=10;
}
return t;
}
int main(){
int n;
cin>>n;
cout<<ikun(n);
return 0;
}
有帮助,赞一个