home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap12 / lst12_3.txt < prev    next >
Text File  |  1996-02-12  |  325b  |  10 lines

  1. void DrawInstructions(Graphics g)
  2. {
  3.     g.drawString("Try to guess the number I am", 48, 65);
  4.     g.drawString("thinking of. The number will be", 48, 80);
  5.     g.drawString("between 0 and 100. You have an", 48, 95);
  6.     g.drawString("unlimited number of tries.", 48, 110);
  7.     g.drawString("Good Luck.", 95, 140);
  8. }
  9.  
  10.