代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/231188/14248317
cpp random.cpp
/*----------------------------------------------------------------------------*/
/* random.c - contains random number generator and related utilities, */
/* including advance_random, warmup_
www.eeworm.com/read/230899/14269581
c random.c
/* Maintain source of random numbers for cryptographic keys, etc
* This is inherently machine dependent code
*/
#include "stdio.h"
#include
#include "global.h"
#include "timer.h"
#inc
www.eeworm.com/read/128742/14280023
c random.c
/****************************************************************************
*
* Copyright (C) 1991 Kendall Bennett.
* All rights reserved.
*
* Filename: $RCSfile: random.c $
* Versi
www.eeworm.com/read/128742/14280033
h random.h
/****************************************************************************
*
* Copyright (C) 1991 Kendall Bennett.
* All rights reserved.
*
* Filename: $RCSfile: random.h $
* Versi
www.eeworm.com/read/128702/14281136
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/128628/14286529
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/128523/14292265
c random.c
//随机数发生器
/*----------------------------------------------------------------------------*/
/* random.c - contains random number generator and related utilities, */
/* including advance_ra
www.eeworm.com/read/128476/14294752
java random.java
package DataStructures;
// Random class
//
// CONSTRUCTION: with (a) no initializer or (b) an integer
// that specifies the initial state of the generator
//
//