Computer Science, asked by mantukumar7, 10 months ago

WAJP to print following patterns.
a
a b
a b c
a b c d
a b c d e ​

Answers

Answered by soumili14
0

What is your question?


mantukumar7: ye ek java program hai
Answered by Pragathi02
0

Answer:

public class pattern

{

public static void main(String args[])

{

int i,j;

for(i=97;i<=101;i++)

{

for(j=97;j<=i;j++)

System.out.print((char)j);

System.out.println();

}

}

}

Explanation:

ANSWER FOR YOUR QUESTION!!

Similar questions