Print Alphabet Pattern in Java
Hello coder today we will learn about how to write Print Alphabet Patter in Java. It is very simple and easy method to write code.class ABCDPattern
{
public static void main(String abc[])
{
int alphabet=65; //ASCII value of A
for(int i=1;i<5;i++)
{
for(int j=1;j<=i;j++)
{
System.out.print((char)alphabet);
alphabet++;
}
System.out.println();
}
}
}
No comments :
Post a Comment