-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1235.c
38 lines (31 loc) · 765 Bytes
/
1235.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <stdio.h>
#include <string.h>
int main()
{
char linha[102], linha_invertida[102];
int i, j, tamanho, metade_tamanho, k, n;
scanf("%d", &n);
getchar();
for (i = 0; i < n; i++)
{
fgets(linha, 102, stdin);
tamanho = strlen(linha);
linha[tamanho - 1] = '\0';
tamanho = strlen(linha);
metade_tamanho = tamanho / 2;
k = 0;
for (j = metade_tamanho - 1; j >= 0; j--)
{
linha_invertida[k] = linha[j];
k++;
}
for (j = tamanho - 1; j >= metade_tamanho; j--)
{
linha_invertida[k] = linha[j];
k++;
}
linha_invertida[tamanho] = '\0';
puts(linha_invertida);
}
return 0;
}