第1个回答 推荐于2018-04-13
#include <stdio.h>
#include <string.h>
void main()
{
int i, len;
char temp;
char buf[512] = { 0 };
scanf("%s", buf);
len = strlen(buf);
for (i = 0; i < len/2; i++)
{
temp = buf[i];
buf[i] = buf[len - 1 - i];
buf[len - 1 - i] = temp;
}
printf("%s", buf);
}本回答被提问者和网友采纳
第2个回答 2010-05-03
#include<stdio.h>
#include<string.h>
void main()
{
char str[1000];
scanf("%s",str);
for(int i=strlen(str)-1;i>=0;i--)printf("%c",str[i]);
printf("\n");
}