/* Linien.inc */ public void paint(Graphics g) { int i; int x = 80; for (i=0; i<60; ++i) { g.drawLine(x,40,x,100); x += 1+3*Math.random(); } }