English, asked by Ghost031, 9 months ago


WAP in Java........!!!!! ​

Attachments:

Answers

Answered by Anonymous
5

hope it helps!

#sumedhian ❤❤

Attachments:
Answered by anindyaadhikari13
3

Question:-

Write a program in Java to display the following series.

AZ BY CX DW...MN

Program:-

class Series

{

public static void main(String args[])

{

char x='A', y='Z';

for(int i=1;i<=26/2;i++)

{

System.out.print(x+""+y+" ");

x++;

y--;

}

}

}

Attachments:
Similar questions