int main(){ char x,y,z;//在这道题中能够熟练运用char类型 scanf("%c %c %c",&x,&y,&z); printf("%c%c%c",z,y,x); return 0; }