代码搜索:大数分解

找到约 4,750 项符合「大数分解」的源代码

代码结果 4,750
www.eeworm.com/read/128822/14277894

cpp 大数阶乘.cpp

// 大数阶乘.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "stdio.h" #include "malloc.h" const MAX=1000; void pnext(int a[],int k) { int *b, m=a[0]
www.eeworm.com/read/128822/14277895

opt 大数阶乘.opt

www.eeworm.com/read/128822/14277897

plg 大数阶乘.plg

Build Log --------------------Configuration: 大数阶乘 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\ADMINI~1
www.eeworm.com/read/128822/14277899

dsw 大数阶乘.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/128822/14277900

ncb 大数阶乘.ncb

www.eeworm.com/read/128822/14277904

dsp 大数阶乘.dsp

# Microsoft Developer Studio Project File - Name="大数阶乘" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/228261/14394612

txt 大数相除 .txt

//大数相除 //调用形式:N.Div(A),返回值:N/A //除法的关键在于“试商”,然后就变成了乘法和减法 //这里将被除数与除数的试商转化成了被除数最高位与除数最高位的试商 CBigInt CBigInt::Div(CBigInt& A) { CBigInt X,Y,Z; int len; unsigned __int64 num,div; unsign
www.eeworm.com/read/228261/14394622

txt 大数相乘.txt

char a[maxv], b[maxv], d[maxv]; char c[maxv+maxv+1]; void multi(char *a, char *b, char *d)//d=a*b { int i, j, k, lena= strlen(a), lenb = strlen(b), lc = lena+lenb; char car, te; for(i=0;
www.eeworm.com/read/228261/14394648

txt 大数相乘 .txt

//大数相乘 //调用形式:N.Mul(A),返回值:N*A /******************************************************************/ 例如: A B C * D E ---------------- = S F G H + T I J K ---------------- = U V L M
www.eeworm.com/read/228261/14394663

txt 大数相减 .txt

//大数相减 //调用形式:N.Sub(A),返回值:N-A //若两大数符号相同,其值相减,否则改变参数符号再调用大数相加函数 /******************************************************************/ 例如: A B C - D E -------------- = F G H 其中,若C>=