代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/199431/7860324
cpp random.cpp
//THE PROGRAM HELPS YOU TO GET THE RANDOM NUMBERS.
//FILE RANDOM.CPP
#include
#include
#include
#include
int main(void)
{
int INPUT,NUMBER,CIRC
www.eeworm.com/read/199431/7860328
dsw random.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/434541/7861117
h random.h
/* Random number generator */
/* Copyright Numerical Recipes in C */
#define IA 16807
#define IM 2147483647
#define AM (1.0/IM)
#define IQ 127773
#define IR 2836
#define MASK 123459876
#defi
www.eeworm.com/read/434541/7861147
h random.h
/* Random number generator */
/* Copyright Numerical Recipes in C */
#define IA 16807
#define IM 2147483647
#define AM (1.0/IM)
#define IQ 127773
#define IR 2836
#define MASK 123459876
#defi
www.eeworm.com/read/434541/7861150
c random.c
#include "random.h"
/* Copyright Numerical Recipes in C */
double ran0(long *idum)
{
long k;
double ans;
*idum ^= MASK;
k=(*idum)/IQ;
*idum=IA*(*idum-k*IQ)-IR*k;
if (*idum
www.eeworm.com/read/434541/7861200
o random.o
www.eeworm.com/read/199264/7874275
obj random.obj
www.eeworm.com/read/199264/7874280
plg random.plg
Build Log
--------------------Configuration: RANDOM - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\zhangl
www.eeworm.com/read/199264/7874286
dsp random.dsp
# Microsoft Developer Studio Project File - Name="RANDOM" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/199264/7874288