题解 | #字符串反转#
字符串反转
http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
数字翻转的第二种解法:
#include <stdio.h>
int main(){
char a[1000];
scanf("%s",a);
for(int i = strlen(a) - 1; i >= 0; i--){
printf("%c",a[i]);
}
return 0;
}
无
无