求助QWQ~
#include<bits/stdc++.h> using namespace std; long long n,t; int main() { scanf("%lld",&n); while(n!=0) { t=n%10; n/=10; printf("%lld",t); } }