检查不出来,大佬看看
#include<iostream> using namespace std; int main() { int a,b; cin>>a; while(a!=0) { b=b*10+a%10; a/=10; } cout<b; return 0; }