Q:

Java patterns program 2)

belongs to collection: Java programs to print patterns

0

Program 2) Print the following pattern


1 
1 2 
1 2 3 
1 2 3 4 
1 2 3 4 5 

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program

import java.util.Scanner;
 
public class Pattern2
{
    public static void main(String[] args) 
    {
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter number of rows: ");
         
        int rows = sc.nextInt();
         
        System.out.println("your pattern is: -");
       
        
        for (int i = 1; i <= rows; i++) 
        {
            for (int j = 1; j <= i; j++)
            {
             System.out.print(j+" ");
            }             
            System.out.println();
        }
        sc.close();
    }
}

Output

 
Enter number of rows: 5
your pattern is: -
1 
1 2 
1 2 3 
1 2 3 4 
1 2 3 4 5 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java patterns program 3)... >>
<< Program 1)...