Java program to Swap the values

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Swap{
	public static void main(String args[]){
		int num1 = Integer.parseInt(args[0]);
		int num2 = Integer.parseInt(args[1]);
		System.out.println("\n***Before Swapping***");
		System.out.println("Number 1 : "+num1);
		System.out.println("Number 2 : "+num2);
		//Swap logic
		num1 = num1 + num2;
		num2 = num1 - num2;
		num1 = num1 - num2;
		System.out.println("\n***After Swapping***");
		System.out.println("Number 1 : "+num1);
		System.out.println("Number 2 : "+num2);
	}
}
surajk

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in