Q:

This Program is used to display the Alphabetic Order list

0

This Program is used to display the Alphabetic Order list.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

// Display the Alphabetic Order

import java.io.*;

class alpa
{
public static void main(String args[])
{
int x=0;
do
{
System.out.print((char)('A'+x)+"\t");
x=x+1;
}while(x<26);
}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now