Hey can someone help me with my java program
you have to A-Z to Z-A
here s what i ve done so far:
class az
{
public static void main(String[]args)throws Exception
{
String x="abcdefghijklmnopqrstuvwxyz";
int ctr;
for(ctr=1;ctr<=26;ctr++)
{
char z=x.charAt(26);
System.out.print(z);
}
}
}