get all words using java
- by hussain
i want to know how to get all word using java
String first[]={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"};
String second[]={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"};
String ch ="";
String total[];
for(int i = 0;i<26;i++)
{
for(int j = 0;j<26;j++)
{
ch+=first[i]+first[j];
System.out.println(ch);
}
}
i get only 576 words only by this program
but the 26! words is 4.03291461 × 1026
how to write the program in java
thanks and advance