代码搜索:大数分解
找到约 4,750 项符合「大数分解」的源代码
代码结果 4,750
www.eeworm.com/read/189078/8490735
txt 放大数组.txt
放大数组[原创]
假设原数组中元素为{1,2,3,4},放大倍数K为2,则结果数组元素为{1,1,2,2,3,3,4,4}。
/*
to enlarge an array by K times
AUTHOR:BugEyes
http://BugEyes.blog.edu.cn
*/
#define N 5
#define K 3
#define M 1
www.eeworm.com/read/189078/8490745
txt 大数相乘代码.txt
原始url:
http://bugeyes.blog.edu.cn/user1/20989/archives/2005/355575.shtml
两整数相乘,一般计算过程(相乘、移位、相加)如下:
4321
×) 999
----------
38889
38889
38889
----------
4316679
模拟该过程的C语言代码如下(整数在数组中逆序存
www.eeworm.com/read/189054/8493931
txt 大数的阶乘.txt
#include
int main()
{
int n; //阶乘大小
printf("请输入n的大小:");
scanf("%d",&n); //从键盘接收阶乘大小
int a[200];
www.eeworm.com/read/167117/9980361
dsw 大数的阶乘.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/167117/9980362
suo 大数的阶乘.suo
www.eeworm.com/read/167117/9980364
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) Con
www.eeworm.com/read/167117/9980367
ncb 大数的阶乘.ncb
www.eeworm.com/read/167117/9980369
sln 大数的阶乘.sln
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "大数的阶乘", "大数的阶乘.vcproj", "{17931723-F54C-4E4D-903C-9BC867FA08AE}"
ProjectSection(Proje
www.eeworm.com/read/167117/9980371
cpp 大数的阶乘.cpp
//vl_app.cpp
//calculates factorrials of larger numbers using verylong class
#include"verylong.h"
void verylong::putvl() const
{
char temp[SZ];
strcpy(temp,vlstr);
cout