代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/222871/14669877
java blnk.java
/*
* @(#)Blink.java 1.4 97/02/05
*
* Copyright (c) 1994-1997 Sun Microsystems, Inc. All Rights Reserved.
*
* Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
* modify a
www.eeworm.com/read/122684/14674380
cpp randgentest.cpp
//: C21:RandGenTest.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// A little test of the ra
www.eeworm.com/read/122674/14676359
h dice.h
#include "random.h"
class Dice
{
private:
// member data
int diceTotal; // sum of the two die
int diceList[2]; // listing of the tw
www.eeworm.com/read/122674/14676377
cpp prg11_5.cpp
#include
#pragma hdrstop
#include "random.h" // generate random integers
#include "bstree.h" // include BinSTree class
#include "treescan.h" // for function
www.eeworm.com/read/122674/14676460
cpp prg9_2.cpp
#include
#pragma hdrstop
#include "random.h"
#include "strclass.h"
#include "nodelib.h"
void main(void)
{
// node list to hold jumbled characters
Node *jumblew
www.eeworm.com/read/222590/14684695
c magic.c
/* magic.c - PPP Magic Number routines */
/* Copyright 1995 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
* Copyright (c) 1989 Carnegie Mellon University.
* All rights reserved.
*
*
www.eeworm.com/read/122379/14696106
txt 说明.txt
本程序需在DOS下运行。每运行一次可执行程序random.exe,即可显示任意两个
16进制数的加法或减法表达式及其运算结果。在减法运算中,如果被减数小于减数,显示
“Divide Overflow”的提示信息。
www.eeworm.com/read/222196/14701716
java cloud.java
import java.applet.Applet;
import java.awt.*;
public class cloud extends Applet{
Image Buffer;
Graphics Context;
float Displace(float num){
float max=num/(float)(getSiz
www.eeworm.com/read/122226/14713747
cpp nimgame.cpp
#include
#include
#include
//double random(double a,double b);
int random(int a,int b);
int is_two_power(int n);
void easymode();
void hardmode();
class game
www.eeworm.com/read/221868/14716993
f90 ex0825.f90
program ex0825
implicit none
interface ! 定义函数func的接口
function random10(lbound, ubound)
implicit none
real :: lbound, ubound
real :: random10(10) ! 传回值是个数组
end function
end interfac