public class Letters {
public static void main (String[] args) {
// Place counter variables
int one = 0;
int ten = 0;
int hun = 0;
int tho = 0;
int tentho = 0;
int huntho = 0;
// I"ve decided that I should use 6 arrays rather than 1.
// Like the numeric system, there is master columns. (ones, tens, hundreds)
// After I get to the end of the "ones" array, the "tens" array index will +1
// and It will repeat.
String[] ones = {"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[] tens = {"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[] huns = {"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[] thos = {"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[] tenthos = {"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[] hunthos = {"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"};
for (int i = 0; i < 27; i++)
{
if (one == 26) {
i = 0;
one = 0;
ten++;
}
if (ten == 26) {
ten = 0;
hun++;
}
if (hun == 26) {
hun = 0;
tho++;
}
if (tho == 26) {
tho = 0;
tentho++;
}
if (tentho == 26) {
tentho = 0;
huntho++;
}
if ( huntho == 27) {
i = 27;
}
System.out.print(hunthos[huntho]);
System.out.print(tenthos[tentho]);
System.out.print(thos[tho]);
System.out.print(huns[hun]);
System.out.print(tens[ten]);
System.out.print(ones[one]);
one++;
System.out.println("\n");
} // for loop
} // main
} // class