home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap13 / Applet18.java < prev    next >
Text File  |  1996-02-13  |  551b  |  27 lines

  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class Applet18 extends Applet
  5. {
  6.     int table[][];
  7.  
  8.     public void init()
  9.     {
  10.         table = new int[6][8];
  11.  
  12.         for (int x=0; x<6; ++x)
  13.             for (int y=0; y<8; ++y)
  14.                 table[x][y] = x+y*6;
  15.     }
  16.  
  17.     public void paint(Graphics g)
  18.     {
  19.         for (int x=0; x<6; ++x)
  20.             for (int y=0; y<8; ++y)
  21.             {
  22.                 String s = String.valueOf(table[x][y]);
  23.                 g.drawString(s, 50+x*25, 50+y*15);
  24.             }
  25.     }
  26. }
  27.