代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/346050/11771799
java box.java
public class Box
{
// 定义方块 下标顺序为 第几类,第几种形态, 第几行,第几列
/*
* 0.┃
* 1.■
* 2.┓
* 3.┏
* 4. _┍
* 5.┓_
* 6.┯
*
*/
public int TypeMax =7;//最多类型数
public int Type;
public
www.eeworm.com/read/345601/11803797
pas itmunit.pas
unit ItmUnit;
interface
uses
Windows,Classes,SysUtils,Grobal2;
type
TItemUnit = class
private
function GetRandomRange(nCount, nRate: Integer): Integer;
public
m_ItemNameList
www.eeworm.com/read/259212/11815935
txt readme.txt
http://www.vb-helper.com/HowTo/cipher.zip
Purpose
Encipher text.
Method
Use a password to inialize the random number generator. Then add a sequence
of random numbers to the text characters.
www.eeworm.com/read/258903/11833277
c draw.c
#include "config.h"
/* 定义16标准色 */
uint16 const COLORS_TAB[16] = {BLACK,
NAVY,
DGREEN,
DCYAN,
MAROON,
PURPLE,
OLIVE
www.eeworm.com/read/258747/11845912
txt rs_testbench.v.txt
/////////////////////////////////////////////////////////////////////
//// ////
//// High Speed Reed Solomon Encoder
www.eeworm.com/read/155797/11847602
cpp mcsrandomnumbergenerator.cpp
/*
Random Number Generator (appropriate for simulation)
The function generate_random_number is from Appendix A of
"Simulation Using Promodel" by Harrell, Ghosh, and Bowden, 3rd
Edition, McG
www.eeworm.com/read/258442/11863032
txt readme.txt
This programm can be used to simulate packet loss on RTP files. The C random number
generator is used for selecting the packets. The random number generator is not
initialized befur usage. Therefo
www.eeworm.com/read/344239/11894983
java foreachfloat.java
//: control/ForEachFloat.java
import java.util.*;
public class ForEachFloat {
public static void main(String[] args) {
Random rand = new Random(47);
float f[] = new float[10];
fo
www.eeworm.com/read/344239/11895796
java randomdoubles.java
//: interfaces/RandomDoubles.java
import java.util.*;
public class RandomDoubles {
private static Random rand = new Random(47);
public double next() { return rand.nextDouble(); }
public s