Hi,

As norm said you changed only args values. So better you do one thing put print statement with in swap method.


private static void swap(String a, String b)
{
String temp=a;
a=b;...