-
Notifications
You must be signed in to change notification settings - Fork 0
/
big_number_addition.c
59 lines (55 loc) · 1.3 KB
/
big_number_addition.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include<stdio.h>
#include<string.h>
void add(char a[], char b[], char res[]);
int main(){
char a[100], b[100], res[105];
scanf("%s %s", a, b);
add(a, b, res);
printf("%s", res);
return 0;
}
void add(char a[], char b[], char res[]){
char sum[105];
char temp[100];
memset(sum,'\0',105);
int num=0,i=0;
int carry=0;
int len_a=strlen(a);
int len_b=strlen(b);
int len = (len_a>len_b)?len_a:len_b;
if(len_a>len_b){
strcpy(temp,b);
memset(b,'0',len);
for(int i=len_a-len_b;i<len_a;i++){
b[i]=temp[i-(len_a-len_b)];
}
b[len]='\0';
}
if(len_b>len_a){
strcpy(temp,a);
memset(a,'0',len);
for(int i=len_b-len_a;i<len_b;i++){
a[i]=temp[i-(len_b-len_a)];
}
a[len]='\0';
}
// printf("%s ",a);
// printf("%s", b);
printf("\n");
while(len-i>0){
num=((*(a+len-i-1)-'0')+(*(b+len-i-1)-'0'));
// printf("\n%d %d",(*(a+len-i-1)-'0'),(*(b+len-i-1)-'0'));
// printf("%d ",num);
sum[i++]=(num+carry)%10+'0';
carry=(num+carry)/10;
}
if(carry>0){
sum[i]='1';
}
for(int i=0;i<strlen(sum);i++,res++){
*res=sum[strlen(sum)-i-1];
// printf("%c",*res);
}
*res='\0';
}
// Your code goes here