Crenox

XCopy Program

Feb 21st, 2014
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package com.samkough.headfirst;
  2.  
  3. public class XCopy
  4. {
  5. public static void main(String args[])
  6. {
  7. int orig = 42;
  8.  
  9. XCopy x = new XCopy();
  10.  
  11. int y = x.go(orig);
  12.  
  13. System.out.println(orig + " " + y);
  14. }
  15.  
  16. public int go(int arg)
  17. {
  18. arg = arg * 2;
  19.  
  20. return arg;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment