代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/370144/9615691
dpr make237.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE CONSOLE}
var
i
www.eeworm.com/read/368787/9678594
m griddrawn.m
function griddrawn
GridNumber = input('请输入栅格数(10-50):');
n=input('请输入路障比列(0.1-0.7):');
n=GridNumber^2*n;
%GridNumber=20;
%m=20;
%n=80;
m=GridNumber;
Dxy=1/m;
XNum=round(1/Dxy);
for i=1:1:m+
www.eeworm.com/read/368285/9702747
v test_bench_top.v
////////////////////////////////////////////////////////////////////
//// ////
//// Top Level Test Bench
www.eeworm.com/read/172493/9705262
cpp buffon.cpp
#include
#include
#include
#include
using namespace std;
/**
Sets the seed of the random number generator.
*/
void rand_seed()
{
int seed = s
www.eeworm.com/read/367990/9721105
c puttext.c
#include
#include
#include
#include
#include
#include
void main(void)
{
char buffer[128];
int row, column;
clr
www.eeworm.com/read/172140/9723480
java randomintgenerator.java
package corejava;
/**
An improved random number generator based on Algorithm B
in Knuth Vol 2 p32.
Gives a set of random integers that does not exhibit
as much correlation as the me
www.eeworm.com/read/171829/9735496
cpp shuffle.cpp
// If you use Visual C++, set the compile options to /GX
#ifdef __BCPLUSPLUS__
#include
#include
#include
#else
#include
#include
#inc
www.eeworm.com/read/367345/9755671
cpp shuffle.cpp
#include
#include
#include
using namespace std;
void main(void)
{
const int VECTOR_SIZE = 8 ;
// Define a template class vector of int
typed
www.eeworm.com/read/171045/9774361
cpp message.cpp
#include "main.h"
int A=4827,M=2147483647;
int Q=M/A;
int R=M%A;
/* function: generate random data
parameter: the seed of generation random data*/
int randInt(int state0)
{ int state;
www.eeworm.com/read/170836/9785675
c sshrand.c
/*
* cryptographic random number generator for PuTTY's ssh client
*/
#include "putty.h"
#include "ssh.h"
void noise_get_heavy(void (*func) (void *, int));
void noise_get_light(void (*func)