#include
#include
#include//三个头文件,都有用
int main()
{
char *str=(char *)malloc(sizeof(char));//char*使用前必须分配内存
while(scanf("%s",str)!=EOF)//char*的scanf不用&!!!!!
{
int len=strlen(str);
for (int i=len-1;i>-1;i--)
printf("%c",str[i]);
printf("\n");
}
return 0;
}
#include
#include
#include
int main()
{
char *str=(char *)malloc(sizeof(char));
while(scanf("%s",str)!=EOF)
{
strrev(str);
printf("%s\n",str);
}
return 0;
}