WAJP to print following patterns.
a
a b
a b c
a b c d
a b c d e
Answers
Answered by
0
What is your question?
mantukumar7:
ye ek java program hai
Answered by
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
Science,
6 months ago
English,
6 months ago
Environmental Sciences,
11 months ago
Computer Science,
11 months ago
Science,
1 year ago
Math,
1 year ago