Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class Pesa {
  2.         public static void main(String[] args) {
  3.                 Mailbox m = new Mailbox();
  4.                 for (int i = 0; i < 3; i++) {
  5.                         new Lettore(i, m);
  6.                         new Scrittore(i, m);
  7.                 }
  8.         }
  9. }