#include<bits/stdc++.h>
using namespace std;
int main()
{
long long n,f,t=0;
cin >> n;
f=n;
while(f!=0)
{
f=f/10;
t++;
}
int x[r];
t=0;
while(n!=0)
{
x[t]=n%10;
t++;
}
for(int i=0;i<=t;i++)
{
cout << x[i];
}
return 0;
}
这是哈工大的104416数字反转,不知道怎么回事没输出,代码看了一圈感觉逻辑没啥问题,但就是没输出,有人解疑吗