大整数的计算
小耗子001
得到的和得不到的都是收获
展开
-
大整数的加法
#include <iostream>#include <stdio.h>#include <cstring> using namespace std;struct bign{ int d[1000]; int len; bign(){ memset(d,0,sizeof(d)); len=0; }};bign change(char str[]){ big...原创 2018-03-25 16:30:37 · 223 阅读 · 0 评论 -
大整数的除法
#include <iostream>#include <stdio.h> #include <cstring>using namespace std;struct bign{ int d[1000]; int len; bign(){ memset(d,0,sizeof(d)); len=0; }};bign change(char str[]){ big...原创 2018-03-25 16:29:41 · 5195 阅读 · 0 评论 -
大整数的乘法
#include <iostream>#include <stdio.h>#include <cstring> using namespace std;struct bign{ int d[1000]; int len; bign(){ memset(d,0,sizeof(d)); len=0; }};bign change(char str[]){ big...原创 2018-03-25 16:30:01 · 192 阅读 · 0 评论 -
大整数的减法
#include <iostream>#include <stdio.h> #include <cstring>using namespace std;struct bign{ int d[1000]; int len; bign(){ memset(d,0,sizeof(d)); len=0; }};void print(bign a){ for(int ...原创 2018-03-25 16:30:16 · 164 阅读 · 0 评论 -
pata1065
#include <iostream>#include <cstdio>using namespace std;int main(){ int T,Testid=1; scanf("%d",&T); while(T--){ long long a,b,c; scanf("%lld%lld%lld",&a,&...原创 2018-04-08 22:10:15 · 160 阅读 · 0 评论 -
patA1023 have fun with numbers (20)
#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;const int maxn=100001;int hashT[maxn]={0};int hashb[maxn]={0};struct bign{ int d[1...原创 2018-05-30 20:32:47 · 193 阅读 · 0 评论