-
Notifications
You must be signed in to change notification settings - Fork 0
/
revisao_p1_string
42 lines (40 loc) · 985 Bytes
/
revisao_p1_string
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
39
40
41
42
#include <stdio.h>
int eh_numero (char s[]);
int eh_digito (char x);
int converte_int (char s[]);
int main () {
char str[20];
scanf ("%s", str);
if (eh_numero(str)) {
printf ("'%s' eh numero!\n", str);
int x = converte_int (str);
printf ("X + 1 = %d\n", x+1);
}
else
printf ("'%s' nao eh numero!\n", str);
}
int eh_numero (char s[]) {
int i;
for (i = 0; s[i] !=0 ; i++) {
if (!eh_digito(s[i]))
return 0;
}
return 1;
}
int eh_digito (char x) {
return x >= '0' && x <= '9';
}
int converte_int (char s[]) {
int i;
for (i = 0; s[i] != 0; i++) {
if (!eh_digito(s[i]))
return -1;
}
int soma = 0, pot = 1, j;
for (j = i-1; j >= 0; j--) {
int n = s[j] - 48; // Convertendo char para int (dígito)
soma += n * pot; // Acumula no somatório (* potência de 10)
pot *= 10; // Atualiza a potência de 10
}
return soma;
}