Back

Pattern 7

C
            #include<stdio.h>
              #include<conio.h>
              void main(){
                 int i, j;
                 clrscr();
                 for(i=1;i<6;i++){
                    for(j=5;j>0;j--){
                 printf("%d  ",j);
                    }
                    printf("\n");
                 }
                 getch();
              }
          
Output:
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
          
Download Program
Java
            public class Pgm7 {
              public static void main(String[] args) {
                // TODO Auto-generated method stub
                for(int i=5;i>=1;i--)
                {
                  for(int j=5;j>=1;j--)
                  {
                    System.out.print(" "+j);
                  }
                  System.out.print("\n");
                }
              }
            }
          
Output:
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
          
Download Program
C++
            #include<iostream>
            using namespace std;
            int i, j;
            for(i=1;i<6;i++){
              for(j=5;j>0;j--){
                 cout<<j<<" ";
               }
               cout<<"\n";
             }
            getc;
            return 0;
           }
          
Output:
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
            5  4  3  2  1
          
Download Program