代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/131005/14163741
java firetree.java
// 程序:烟火树粒子
// 范例文件:FireTree.java
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class FireTree extends Applet implements Runnable
{
final int Max = 1000;
f
www.eeworm.com/read/131001/14163760
java snow.java
// 程序:雪花粒子
// 范例文件:Snow.java
import java.applet.*;
import java.awt.*;
public class Snow extends Applet implements Runnable
{
final int Max = 500;
snowparticle p[];
int AppletWidt
www.eeworm.com/read/131000/14163767
java smoke.java
// 程序:烟粒子
// 范例文件:Smoke.java
import java.applet.*;
import java.awt.*;
public class Smoke extends Applet implements Runnable
{
final int Max = 1000;
sparticle p[];
int AppletWidth
www.eeworm.com/read/130917/14167512
h worm2.h
//Worm2.h
#include
#include
#include
#define UP 1
#define DOWN 3
#define LEFT 4
#define RIGHT 2
#define AHEAD 0
#define ST
www.eeworm.com/read/130612/14180766
java testiterated.java
// Chapter 7 Exercise 3
public class TestIterated {
public static void main(String args[]) {
try {
loopy(); // Call the method that will throw the exception.
}
cat
www.eeworm.com/read/130612/14181488
java testshapelist.java
// Chapter 6 Exercise 3
// Tests the operation of the ShapeList class.
public class TestShapeList {
public static void main(String args[]) {
ShapeList shapes = null; // Stores
www.eeworm.com/read/130612/14181501
java testshapes.java
// Chapter 6 Exercise 1
public class TestShapes {
public static void main(String args[]) {
Shape[] shapes = new Shape[10]; // Define an array of shapes.
Point[] pts = null;
www.eeworm.com/read/130612/14181503
java testshapelist.java
// Chapter 6 Exercise 2
// Tests the operation of the ShapeList class:
public class TestShapeList {
public static void main(String args[]) {
ShapeList shapes = null; // Stores a