Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*This program swaps two numbers and print them*/
- class Swap2
- {
- void swapNumbers(int A,int B)
- {
- A=A+B;
- B=A-B;
- A=A-B;
- System.out.println("A = "+A);
- System.out.print("B = "+B);
- System.out.println("Program over");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment