C语言
#include "math.h" #include "stdio.h" main() { char a,b,c,d; scanf("%c%c%c.%c",&a,&b,&c,&d); printf("%c.%c%c%c",d,c,b,a); return 0; }