Dremendo Tag Line

Pattern printing program 1 22 333 using for loop in Java

for Loop - Question 16

In this question, we will see how to print the pattern 1 22 333 in Java programming using for loop. To know more about for loop click on the for loop lesson.

Q16) Write a program in Java to print the pattern given below using for loop.

1
22
333
4444
55555

Program

public class Q16
{
    public static void main(String args[])
    {
        int r,c;

        for(r=1; r<=5; r++)
        {
            for(c=1; c<=r; c++)
            {
                System.out.print(r);
            }
            System.out.println();
        }
    }
}

Output

1
22
333
4444
55555
video-poster