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