Auto commit
This commit is contained in:
parent
dc74003746
commit
d31fe4ec44
44
高精度.md
44
高精度.md
@ -37,34 +37,34 @@ int main(){
|
||||
|
||||
```c
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
int main(){
|
||||
char str1[200], str2[200], temp[200],result[1000] = {0};
|
||||
int i, j, k, t;
|
||||
char str1[200], str2[200], result[400]={0};
|
||||
int i, j, k, t = 0;
|
||||
|
||||
scanf("%s %s", str1, str2);
|
||||
|
||||
j=strlen(str2)-1;
|
||||
|
||||
j=strlen(str2)-1;//下面的数的从个位开始的每一位的下标
|
||||
while(j>=0){
|
||||
k=0;
|
||||
for(i=strlen(str1)-1;i>=0;i--){
|
||||
t = k + strlen(str2)-1-j;
|
||||
result[t+1] += (result[t] + (str1[i]-48)*(str2[j]-48))/10;
|
||||
result[t] = (result[t] + (str1[i]-48)*(str2[j]-48))%10;
|
||||
i=strlen(str1)-1;//上面的数的每一位的下标
|
||||
k=0;//上面数字的 0:个位 1:十位
|
||||
t=strlen(str2)-j-1;//下面数字乘法的偏移量
|
||||
while(i>=0){
|
||||
result[k+t] += (str1[i]-48)*(str2[j]-48);
|
||||
result[k+t+1] += result[k+t]/10;
|
||||
result[k+t] %=10;
|
||||
k++;
|
||||
i--;
|
||||
}
|
||||
j--;
|
||||
}
|
||||
k+=strlen(str2)-1;
|
||||
k+=strlen(str2);
|
||||
while(result[k] == 0) k--;
|
||||
|
||||
while(k>=0){
|
||||
putchar(result[k] + 48);
|
||||
k--;
|
||||
putchar(result[k--]+48);
|
||||
}
|
||||
puts("");
|
||||
|
||||
printf("\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -73,19 +73,5 @@ int main(){
|
||||
|
||||
|
||||
|
||||
### 高精度减法
|
||||
|
||||
```c
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 高精度乘法
|
||||
|
||||
```c
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user