Translate

Friday 5 February 2016

Write a java code to print following pattern

(a)
(a+b)
(a+b+c)
(a+b+c+d)


Solution:

//PrintABCD.java
class PrintABCD
{
public static void main(String abc[])
{
for(int i=1;i<10;i++) // increase count 10 to 27 to print till "z"
        {          
            String strChars="";  
            int alphabet=97;                          //ASCII value of A = 65 and a=97
            for(int j=1;j<=i;j++)
              {
                strChars=strChars+(char)alphabet + " + ";
                alphabet++;
              } 
          System.out.println("(" + strChars.substring(0,strChars.length()-3) + ")");
         }
     }
}