Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

I need help please send me reply:
Write a program "if given a string like 'HAT', the
combination's returned should be like ATH,THA,TAH in java"?

Answer Posted / sathish.pk

public static void main( String[] args )
{

/* you give any String */

String myString="HAT";

char[] characters=new char[3];

for(int i=0;i<1;i++)
{

for(int j=0;j<=2;j++)
{
/* getting each character from above string(myString)*/

characters[j]=myString.charAt(j);
}

/*print each character according to our output*/

System.out.println(characters[i+1]+""+characters[i]+""+characters[i+2]);

System.out.println(characters[i+1]+""+characters[i+2]+""+characters[i]);

System.out.println(characters[i]+""+characters[i+2]+""+characters[i+1]);

System.out.println(characters[i+2]+""+characters[i+1]+""+characters[i]);

System.out.println(characters[i+2]+""+characters[i]+""+characters[i+1]);

}


}

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we override constructor?

1018


What is an example of a constant variable?

1076


Which browsers work with java?

1069


What does the ‘static’ keyword mean? Is it possible to override private or static method in java?

979


Is singleton class immutable?

961


What are alternatives to java serialization?

1115


What is composition in java?

1282


What is an example of a keyword?

1097


What is the purpose of the System class?

992


Is class forname reflection?

978


What is locale?

1021


Does sprintf add a null terminator?

1089


What is treeset in java collection?

962


Is empty set an element of empty set?

1097


How do you bind variables?

1092