Swapping of two numbers
swapping two numbers by using a temporary variable
public class Swap {
public static void main(String[] args) {
int a=10,b=20;
System.out.println("Before swapping: a="+a+",b="+b);
int temp = a;
a = b;
b=temp;
System.err.prin...
sirishachallagiri.hashnode.dev1 min read