this should be the output:
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
heres what i ve done so far:
class za
{
public static void main(String[]args)
{
String x="abcdefghijklmnopqrstuvwxyz";
int ctr;
for(ctr=1;ctr<=x.length()-1;ctr++)
{
if(ctr%2)
System.out.print(Character.toUpperCase(x.charAt(ctr)));
}
}
}