文件名称:java语言编写霓虹灯程序
文件大小:1KB
文件格式:TXT
更新时间:2011-11-18 09:59:04
java 霓虹灯
java霓虹灯闪烁程序 import java.awt.*; import java.applet.*; public class neonlights extends Applet { int whichlight=0; public void paint(Graphics g) { // TODO: Add your own implementation. super.paint(g); while (true) {try { Graphics gl=getGraphics(); movelights(); drawlights(gl); Thread.sleep(2000); } catch (InterruptedException e) { stop(); } } }