代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/206867/15286955
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/206856/15287959
mpg random.mpg
www.eeworm.com/read/205931/15303691
cpp random.cpp
#include
#include "Random.h"
void Random::bubbleSort(int a[], int size)
{
int i, temp;
for(int pass=1; pass
www.eeworm.com/read/205931/15303692
h random.h
#ifndef RANDOM
#define RANDOM
#include
#include
class Random{
private:
unsigned long int seed; //previously LONG INT
unsigned long int seed_u;
public:
Random(v
www.eeworm.com/read/704/2724
vi random.vi
www.eeworm.com/read/5582/49427
vfx random.vfx
www.eeworm.com/read/5582/51041
vfx random.vfx
www.eeworm.com/read/11139/202197
nc random.nc
/*
* "Copyright (c) 2000-2005 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation
www.eeworm.com/read/11175/207858
asm random.asm
TITLE RANDOM - Random number generator and RANDOMIZE
page ,132
;***
; RANDOM - Random number generator and RANDOMIZE
;
; Copyright 1986, Microsoft Corporation
;
;Purpose:
;
; BASIC Synt
www.eeworm.com/read/11180/210987
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