代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/339796/12203988
h randn.h
/*产生一个服从均值为mu,方差为sigma的正态分布随机数*/
#include
#include
double random(void)
{
int a;
double r;
a=rand()%32767;
r=(a+0.00)/32767.00;
www.eeworm.com/read/251601/12330887
ini demo.ini
;皮肤设置文件
;这只是个例子(;开头忽略)
;skin的子目录下
;皮肤列表
;皮肤数
[DefSet]
SkinNum =2
[SkinName]
样式一 = skin\Skin1.swf
样式二 = skin\Skin2.swf
www.eeworm.com/read/148705/12439148
cpp p4-197.cpp
#include
#include
#include
using namespace std;
//返回一个Fibonacci数,其由generate_n()算法调用
int Fibonacci1(void)
{
static int r;
static int f1 = 0;
sta
www.eeworm.com/read/132050/14112483
bas nlmivmainmodule.bas
Attribute VB_Name = "MainModule"
Sub Main()
Dim n As Integer, m As Integer
Dim s As String
' 3个未知数
m = 3
' 2次方程
n = 2
' 分配初值和解的内存
ReDim x(n) As Dou
www.eeworm.com/read/130876/14171227
bas nlmivmainmodule.bas
Attribute VB_Name = "MainModule"
Sub Main()
Dim n As Integer, m As Integer
Dim s As String
' 3个未知数
m = 3
' 2次方程
n = 2
' 分配初值和解的内存
ReDim x(n) As Dou
www.eeworm.com/read/230671/14278668
h netdefine.h
#ifndef NETDEFINE_H
#define NETDEFINE_H
/***********************基本操作*******************************/
#define NETCOM_NODENOTIFY 0x02 //查找DVR回传的IP,端口数等消息
#define NETCOM_LOGIN_OK 0x
www.eeworm.com/read/128256/14308215
cpp p4-197.cpp
#include
#include
#include
using namespace std;
//返回一个Fibonacci数,其由generate_n()算法调用
int Fibonacci1(void)
{
static int r;
static int f1 = 0;
sta
www.eeworm.com/read/229360/14343417
txt encryptionalgorithm.txt
Blowfish加密算法源码。
这个Blowfish源码来自jive3.X,使用实例:
public class BlowfishTest{
public static void main(String [] args){
//实际应用中这里应是个随机数
String keyString = "hello cnjbb!";