mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 21:58:41 +00:00
24 lines
319 B
C
24 lines
319 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int n;
|
||
|
char s[105];
|
||
|
|
||
|
int main() {
|
||
|
scanf("%d", &n);
|
||
|
|
||
|
for (int i = 1; i <= n; i++) {
|
||
|
scanf("%s", s);
|
||
|
|
||
|
int len = strlen(s);
|
||
|
|
||
|
for (int j = len - 1; j >= 0; j--) {
|
||
|
printf("%c", s[j]);
|
||
|
}
|
||
|
|
||
|
printf("\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|