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

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.10 KB  |  hits: 10  |  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. int a = 5;
  2. int b = 10;
  3.  
  4. public static int myMethod(a,b) {
  5.  
  6. int z;
  7.  
  8. z = b - a;
  9. return z;
  10.  
  11. }