JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Program
{
public static void main(String[] args) {
int i = 1;
while(i <= 5){
int j = i;
while(j > 0){
System.out.print("1");
j--;
}
System.out.println();
i++;
}
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run