Back

Pattern 23

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