代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/315460/13542075
h random.h
/*
* File: random.h
* Last modified on Mon Sep 13 10:42:45 1993 by eroberts
* --------------
* Library package to produce pseudo-random numbers.
*/
#ifndef _random_h
#define _random_h
#include
www.eeworm.com/read/314499/13565609
asm random.asm
data segment
ran db 0
data ends
stack segment stack
db 20dup(0)
stack ends
code segment
assume ds:data,ss:stack,cs:code
begin:
call random
mov ran,bl
mov al,ran
call far ptr num_cha
www.eeworm.com/read/308442/13701360
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
www.eeworm.com/read/306970/13734080
c random.c
/*
* Mersenne Twister Random Algorithm
* Copyright (c) 2006 Ryan Martell.
* Based on A C-program for MT19937, with initialization improved 2002/1/26. Coded by
* Takuji Nishimura and Makoto Matsumo
www.eeworm.com/read/306970/13734090
h random.h
/*
* Mersenne Twister Random Algorithm
* Copyright (c) 2006 Ryan Martell.
* Based on A C-program for MT19937, with initialization improved 2002/1/26. Coded by
* Takuji Nishimura and Makoto Matsumo
www.eeworm.com/read/305857/13759925
mpg random.mpg
www.eeworm.com/read/305160/13777666
doc random.doc
www.eeworm.com/read/302870/13826029
obj random.obj
www.eeworm.com/read/302870/13826030