Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

yes no maybe 1

By: ace on Jan 23rd, 2010  |  syntax: None  |  size: 0.37 KB  |  hits: 24  |  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. public string getResponse()
  2.     {
  3.         int index = randomGenerator.nextInt(3);
  4.         {
  5.             if(index = 0)
  6.             {
  7.                 return "yes";
  8.             }
  9.             if(index = 1)
  10.             {
  11.                 return "no";
  12.             }
  13.             if(index = 2)
  14.             {
  15.                 return "maybe";
  16.             }
  17.         }
  18.     }