【十二题解】 | #字符串反转#
字符串反转
http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
#include<stdio.h>
int main(){
char word[1000];
scanf("%[^\n]\n", word);
int lenth = 0;
for(;word[lenth]!='\0'; lenth++);
for(int i = lenth-1; i>=0; i--){
printf("%c", word[i]);
}
return 0;
}