Computer Science, asked by richa4586, 11 months ago

To display the following serise
1 11 111 1111 11111​

Answers

Answered by angel1424
0

1 11 111 1111 11111 111111

follow this equation

Answered by aaron93
3

class one

{

public static void main()

{

int i, j;

for(i=1;i<=5;i++)

{

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

{

System. out. print("1");

}

System. out. print(" ");

}

}

}

Similar questions