Powered by Blogger.

Print Alphabet Pattern in Java



Print Alphabet Pattern in Java

Using For and while loop you can easily Print Alphabet Pattern in Java, in place of print() function use System.out.print(); and for new line use println() function.

Print Alphabet Pattern in Java

Code for Print Alphabet Pattern in Java


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();
 }
}
}

Output

A
AB
ABC
ABCD



facebook
google-plus
twitter
pinterest

No comments :

Post a Comment

HTML Tutorial

images

About Sitesbay

This blog is related to Java Tutorial, C++ Tutorial, C Tutorial, Online Earning tips and more in very simple and easy way. Here i will try to give complete idea related to all new technology.

Java Tutorial

Java is Object oriented programming language, It is more secure and high performance language.

C++ Tutorial

C++ is also Object oriented programming language, It is more simple and easy to learn.

 
https://sitesbay.blogspot.com/?utm_medium=d2898efa59afcc0bc411921036e22b767ca37b09