Advertisement
Guest User

Untitled

a guest
Nov 8th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class IntValue {
  2.     public int value;
  3.    
  4.     public static void swap(IntValue i1, IntValue i2) {
  5.         int temp = i1.value;
  6.         i1.value = i2.value;
  7.         i2.value = temp;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement