代码搜索:预置数

找到约 10,000 项符合「预置数」的源代码

代码结果 10,000
www.eeworm.com/read/312803/13604197

cpp 十数计算dlg.cpp

// 十数计算Dlg.cpp : implementation file // #include "stdafx.h" #include "十数计算.h" #include "十数计算Dlg.h" #include "math.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_
www.eeworm.com/read/311771/13626493

c 排列数(指针冒泡法).c

#include void pailie(int a[]) { int *p,i,j,t; p=a; for(i=0;i
www.eeworm.com/read/311771/13626538

c 排列数(冒泡法2).c

#include /*此头函数请不要删除 */ #include main() { int a[10],i,j,t; printf("Please enter data:\n"); for(i=0;i
www.eeworm.com/read/308379/13703292

txt 题目35级数.txt

题目35:某级数的前两项A1=1,A2=1,以后各项具有如下关系:An=An-2+2An-1. 下列程序的功能是:要求依次对于整数M=100,1000和10000求出对应的n值,使其满足:Sn=M,这里Sn=A1+A2+...+An, 并依次把n值存入数组单元b[0],b[1]和b[2]中,请编制jsvalue()函数来实现此功能, 最后调用函数writeDat()把数
www.eeworm.com/read/308157/13707097

c 二进制数.c

/*递归法求二进制数*/ #include void printb(int x,int n); void main() { int x; printf("input number:"); scanf("%d",&x); printf("number of decimal form: %d\n",x);
www.eeworm.com/read/307570/13720363

ppt 第3章 数 组.ppt

www.eeworm.com/read/305642/13764048

ppt 第3章 数 组.ppt

www.eeworm.com/read/302998/13823955

cpp 真正的随机数.cpp

// 真正的随机数.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include #include "stdlib.h" int main() { srand(time(0));