-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathp124.c
31 lines (30 loc) · 887 Bytes
/
p124.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
/* ¿Cuántas me llevo? */
#include <stdio.h>
#include <string.h>
int main() {
char numero1[1001], numero2[1001];
int terminado, acarreo, count;
int i;
while(1) {
scanf("%s %s", numero1, numero2);
if(strcmp(numero1, "0") == 0 && strcmp(numero2, "0") == 0)
return 0;
i = 0;
count = 0;
acarreo = 0;
terminado = 0;
while(!terminado) {
acarreo = (i<strlen(numero1)?numero1[strlen(numero1)-i-1] - '0':0) + (i<strlen(numero2)?numero2[strlen(numero2)-i-1] - '0':0) + acarreo;
if(acarreo > 9) {
count++;
acarreo = 1;
} else {
acarreo = 0;
}
i++;
if(!acarreo && (i > strlen(numero1)-1 || i > strlen(numero2)-1))
terminado = 1;
}
printf("%d\n", count);
}
}