Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class IntValue {
- public int value;
- public static void swap(IntValue i1, IntValue i2) {
- int temp = i1.value;
- i1.value = i2.value;
- i2.value = temp;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement