Pattern 3

Pattern 3


4
4 3
4 3 2
4 3 2 1

import java.io.*;

class Patterns3{

public static void main(String args[])throws IOException{

//declare all the variables at the beginning
int n,i,j;
    BufferedReader br = new BufferedReader( 
                new InputStreamReader(System.in));
    System.out.println("Enter the number of rows : ");
    n = Integer.parseInt(br.readLine());

    //loop to generate the number of terms in the series
    for(i = n; i >= 1; i--){
      for(j = i; j <= n; j++){
         System.out.print(j+" ");
        }//end of inner loop
      System.out.println();
    }//end of outer loop

  }//end of main
}//end of class        

Have something to say? Log in to comment on this post.

0 comments