题解
2023-08-11 18:35:24
发布于:浙江
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a ,b = 10;
cin >> a;
while (a % b == 0){
a = a / 10;
}
while (a){
cout << a % b;
a = a / 10;
}
return 0;
}
这里空空如也
有帮助,赞一个