题解 | #字符串反转#
字符串反转
https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
#include <stdio.h> #include <string.h> int main() { char str[1002]; while (scanf("%s", str) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to int cnt = strlen(str); //printf("%s %d\n", str, cnt); for(int i = cnt - 1; i >= 0; i--) { printf("%c", str[i]); } printf("\n"); } return 0; }