代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/244076/12891403
errs
cc -O -c main.c
cc -O -c app.c
cc -O -c generate.c
cc -O -c initial.c
cc -O -c memory.c
cc -O -c operators.c
cc -O -c random.c
cc -O -c report.c
cc -O -c rselect.c
cc -O -c statisti
www.eeworm.com/read/244076/12891608
makefile
##
## SGPC: Simple Genetic Programming in C
## (c) 1993 by Walter Alden Tackett and Aviram Carmi
##
## This code and documentation is copyrighted and is not in the public domain.
## All righ
www.eeworm.com/read/244076/12891960
m newpop.m
function [out]=newpop(members,bits)
%
% [out]=newpop(members,bits)
%
% Initialises a new random population
%
out=rand(members,bits);
out=round(out);
www.eeworm.com/read/143044/12902677
-
本程序需在DOS下运行。每运行一次可执行程序random.exe,即可显示任意两个
16进制数的加法或减法表达式及其运算结果。在减法运算中,如果被减数小于减数,显示
“Divide Overflow”的提示信息。
www.eeworm.com/read/243682/12924271
txt winrex.txt
/L20"WinRexx" Nocase Line Comment = // Block Comment On = /* Block Comment Off = */ String Chars = "' File Extensions = CMD REX REXX
/Delimiters = ~!@$%^&*()+=|\/{}[]:;"' ,.?/
/Function String
www.eeworm.com/read/142590/12936376
java 习题5-3.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
public class tt1
{
public static void main(String args[])
{
JFrame f=new TimerTestFrame();
f.
www.eeworm.com/read/142539/12940986
c fig10_55.c
/* Bad random number generator */
#include
/* START: fig10_55.txt */
static unsigned long Seed = 1;
#define A 48271L
#define M 2147483647L
www.eeworm.com/read/243428/12941634
txt 说明.txt
本程序需在DOS下运行。每运行一次可执行程序random.exe,即可显示任意两个
16进制数的加法或减法表达式及其运算结果。在减法运算中,如果被减数小于减数,显示
“Divide Overflow”的提示信息。
www.eeworm.com/read/142433/12945935
cpp randn.cpp
#include "NumMeth.h"
double rand( long& seed );
// Random number generator; Normal (Gaussian) dist.
double randn( long& seed ) {
// Input
// seed Integer seed (DO NOT USE A SEED OF ZERO
www.eeworm.com/read/142433/12945959
cpp rand.cpp
#include "NumMeth.h"
// Random number generator; Uniform dist. in [0,1)
double rand( long& seed ) {
// Input
// seed Integer seed (DO NOT USE A SEED OF ZERO)
// Output
// rand Random