Swapp two number using third variable

int a,b,c;
a=5;
b=6;
c=a;
a=b;
b=c;
System.out.println(a+""+b);

Comments

Popular posts from this blog