代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/221853/14717760
txt 说明.txt
本程序需在DOS下运行。每运行一次可执行程序random.exe,即可显示任意两个
16进制数的加法或减法表达式及其运算结果。在减法运算中,如果被减数小于减数,显示
“Divide Overflow”的提示信息。
www.eeworm.com/read/221846/14718396
cpp system.cpp
//**************************************************************//
// //
// August 2002
www.eeworm.com/read/122037/14723760
txt gasdev.txt
Function GASDEV:real;
var
V1,V2,FAC,R:real;
begin
If ISET^= 0 Then
begin
repeat
V1:=2 * Random - 1;
V2:=2 * Random - 1;
R:=Sqr(V1) + Sqr(V2);
u
www.eeworm.com/read/122037/14724519
pas unit2.pas
unit Unit2;
interface
uses
unit1;
Function GASDEV:real;
implementation
Function GASDEV:real;
var
V1,V2,FAC,R:real;
begin
If ISET^= 0 Then
begin
repeat
V1:=2
www.eeworm.com/read/121834/14735497
c 潜艇大轮船.c
#include "graphics.h"
#include "stdlib.h"
#include "dos.h"
#define L1 1000
#define L2 L1/2
#define L4 L1/4
#define A 523
#define S 587
#define D 659
#define F 698
#define G 784
#define H 88
www.eeworm.com/read/221502/14739712
txt 说明.txt
本程序需在DOS下运行。每运行一次可执行程序random.exe,即可显示任意两个
16进制数的加法或减法表达式及其运算结果。在减法运算中,如果被减数小于减数,显示
“Divide Overflow”的提示信息。
www.eeworm.com/read/121605/14749434
h randnumber.h
#include
#include
using namespace std;
// generate random numbers
class randomNumber
{
public:
// initialize the random number generator
randomNumber(long s = 0);
www.eeworm.com/read/221249/14752385
java ppoint.java
import java.io.*;
class point
{
int x,y;
point()
{
x=0;
y=0;
}
point(int n,int m)
{
x=n;
y=m;
}
void setpoint(int n,int m)
{
x=n;
y=m;
}
int distence()
{
www.eeworm.com/read/221224/14752824
cs check.ascx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using