class T
{
static String str34[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M",
"N", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" };
public static void main(String[] args)
{
System.out.println("Hello World!");
function(4,34,"");
}
public static void function(int p,int d,String arg){
if(p==0){System.out.println(arg); return;}
for(int i=0;i<d;i++){
arg+=str34[i];
function(p-1,d,arg);
arg=arg.substring(0,arg.length()-1);}
}
}
|