代码搜索:random

找到约 10,000 项符合「random」的源代码

代码结果 10,000
www.eeworm.com/read/273231/10922438

exe random.exe

www.eeworm.com/read/273231/10922440

asm random.asm

DATA SEGMENT CC DB '+' ww db '-' GG DB '=' II DB 0DH,0AH,'$' AA DB 5 DUP(?) www dw 0 ghh db '0',0dh,0ah,'$' bnm dw 0 DATA ENDS STACK SEGMENT D
www.eeworm.com/read/273032/10930876

html random.html

function WinOpen() { msg=open("test.html","DisplayWindow","toolbar=yes,directories=yes,menubar=yes"); //msg.document.write("哈 罗!
www.eeworm.com/read/272970/10934462

exe random.exe

www.eeworm.com/read/272970/10934463

asm random.asm

DATA SEGMENT CC DB '+' ww db '-' GG DB '=' II DB 0DH,0AH,'$' AA DB 5 DUP(?) www dw 0 ghh db '0',0dh,0ah,'$' bnm dw 0 DATA ENDS STACK SEGMENT D
www.eeworm.com/read/272625/10951581

inl random.inl

//random.inl 随机函数(方法)定义 // Ver 1.0.0.0 // 版权所有(C) 何渝, 2002 // 最后修改: 2002.5.31. #ifndef _RANDOM_INL #define _RANDOM_INL //产生一个[0,1]区间内均匀分布伪随机数 inline double rand_01_One(double& seed) {
www.eeworm.com/read/272625/10951597

h random.h

//random.h 宏定义及随机函数(方法)原型头文件 // Ver 1.0.0.0 // 版权所有(C) 何渝, 2002 // 最后修改: 2002.5.31. #ifndef _RANDOM_H #define _RANDOM_H #define RandCoef2053 2053 #define RandCoef13849 13849 #define MOD
www.eeworm.com/read/272438/10957565

txt random.txt

www.eeworm.com/read/418028/10967214

c random.c

/* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiven
www.eeworm.com/read/417462/10989237

c random.c

#include #include void main(void) { int i; printf("Values from rand\n"); for (i = 0; i < 100; i++) printf("%d ", rand()); printf("Values from rando