Write a program in java to display the pattern shown below
please help
Attachments:
Answers
Answered by
0
Answer:
Explanation:
int i,j;
for(i=1;i<=7;i++)
{
for(j=1;j<=i;j++)
{
System.out.print("#");
}
System.out.print("\n");
}
please add me in brainliest if you found this is helpful and you have any doubt tell me.
Similar questions