WAP in Java........!!!!!
Attachments:
Answers
Answered by
5
hope it helps!
#sumedhian ❤❤
Attachments:
Answered by
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