代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/124165/14592406
htm p626_object.htm
Welcome to the random acts of kindness page. Just for you:
www.eeworm.com/read/124165/14592408
js greeting2.js
// greeting2.js
function greet()
{
if ( Math.random() > 0.5 )
alert('Happy Birthday!');
else
alert('Merry Christmas!');
}
www.eeworm.com/read/124164/14592668
htm ch12_q2.htm
var isIE;
var floatingDivHeight = 65;
var floatingDivWidth = 265;
var timerId;
var screenWidth;
var screenHeight;
var horizontalMovement = Math.
www.eeworm.com/read/123156/14644968
java powerup.java
import java.awt.*;
public class powerup{
private int xPos;
private int yPos;
private int function;
private Rectangle Powerup;
private int display = 0;
private int displaytime;
publi
www.eeworm.com/read/123156/14644974
java enemy4.java
import java.awt.*;
public class Enemy4{
// control varibles
private final int UP = 0;
private final int DOWN = 1;
private final int LEFT = 2;
private final int RIGHT = 3;
// Physical in
www.eeworm.com/read/123156/14644984
java bigbomb.java
import java.awt.*;
public class bigBomb{
private int xPos, yPos;
private int timeofbomb = 6;
public bigBomb(int a, int b){
xPos = a;
yPos = b;
}
public void draw(Graphics g){
www.eeworm.com/read/123156/14644991
java enemy3.java
import java.awt.*;
public class Enemy3{
// control varibles
private final int UP = 0;
private final int DOWN = 1;
private final int LEFT = 2;
private final int RIGHT = 3;
// Physical in
www.eeworm.com/read/123156/14644995
java smallbomb.java
import java.awt.*;
public class smallBomb{
private int xPos, yPos;
private int timeofbomb = 3;
public smallBomb(Point a){
xPos = a.x;
yPos = a.y;
}
public void draw(Graphics g){
www.eeworm.com/read/223229/14649293
cpp utils.cpp
#include "StdAfx.h"
#include "utils.h"
int CGlobals::WIN_WIDTH = 800;
int CGlobals::WIN_HEIGHT = 600;
double CGlobals::EPSILON = 0.005;
long CGlobals::INFINITY=999999;
double CGlobals::PI= 3
www.eeworm.com/read/223098/14659292
cs validateimage.aspx.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