C++ 代码(sscanf)
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
char str[10];
int main()
{
scanf("%s", str);
int ans, len = strlen(str);
str[0] == '-' ? reverse(str + 1, str + len) : reverse(str, str + len);
sscanf(str, "%d", &ans);
printf("%d", ans);
return 0;
}