代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/406340/11444661
cs verifycode.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
www.eeworm.com/read/405286/11466725
java staticgenerator.java
//file: StaticGenerator.java
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.util.Random;
import javax.swing.*;
public class StaticGenerator extends JComponent implem
www.eeworm.com/read/404941/11475655
txt 说明.txt
本程序需在DOS下运行。每运行一次可执行程序random.exe,即可显示任意两个
16进制数的加法或减法表达式及其运算结果。在减法运算中,如果被减数小于减数,显示
“Divide Overflow”的提示信息。
www.eeworm.com/read/404849/11477139
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/404849/11477145
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/404849/11477153
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/404849/11477157
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/404849/11477159
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/404571/11482568
job e.job
/**
* 产生一个随机数
*
*/
/**
* @author 阿赞
*
*/
public class RandomNumber {
public RandomNumber() {
}
public int random() {
double a = (new java.util.Random()).nextDouble();
//double a = (new