public static void swapNumbers(int one, int two){
one = one + two; two = one - two; one = one - two; System.out.println("One is " + one + "Two is " +two); }
No comments:
Post a Comment