pattern for loop program

public static void main(String[] args) { // TODO Auto-generated method stub int val=5; for(int row = 1; row

Mar 2, 2025 - 19:54
 0
pattern for loop program
public static void main(String[] args) {
        // TODO Auto-generated method stub
        int val=5;
   for(int row = 1; row<=5; row ++ )
   {
       for(int col = 1; col<=row; col++)
       {
           System.out.print(val+" ");
       }
       System.out.println();    
       val--;
   }
out put - 
5 
4 4 
3 3 3 
2 2 2 2 
1 1 1 1 1