题解哥***********2024-01-14 17:55:38发布于:广东2阅读0回复0点赞#include<bits/stdc++.h> using namespace std; int main() { int n,r,sum=0; cin>>n; while(true) { r = n%10; sum = sum*10 + r; n/=10; if(n==0) break; } cout<<sum; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个