Display the Inverted Half Pyramid Star pattern

*****
  ****
    ***
      **
        *

Program in C

Here is the source code of the C Program to display the Inverted Half Pyramid Star pattern.

#include<stdio.h>
int main()
{
  printf("Enter the row size:");
  int row_size,out,in,p;
  scanf("%d",&row_size);
  for(out=1;out<=row_size;out++)
  {
   for(in=1;in<=out;in++)
    printf(" ");
   for(p=row_size;p>=out;p--)
    printf("*");
    printf("\n");
  }
}

Input/Output:
Enter the row size:5
 *****
   ****
     ***
       **
         *

Program in C++

Here is the source code of the C++ Program to print the Inverted Half Pyramid Star pattern.

#include<iostream>
using namespace std;
int main()
{
  cout<<"Enter the row size:";
  int row_size,out,in,p;
  cin>>row_size;
  for(out=1;out<=row_size;out++)
  {
   for(in=1;in<=out;in++)
    cout<<" ";
   for(p=row_size;p>=out;p--)
    cout<<"*";
    cout<<"\n";
  }
}

Input/Output:
Enter the row size:7
 *******
   ******
     *****
       ****
         ***
           **
             *

Program in Java

Here is the source code of the Java Program to display the Inverted Half Pyramid Star pattern.

import java.util.Scanner;
public class p4 {
 public static void main(String[] args) {
  Scanner cs=new Scanner(System.in);
  System.out.println("Enter the row size:");
    int row_size=cs.nextInt();
    for(int out=1;out<=row_size;out++)
    {
     for(int in=1;in<=out;in++)
      System.out.printf(" ");
     for(int p=row_size;p>=out;p--)
      System.out.print("*");
           System.out.println();
    }
  cs.close();
 }
}
Input/Output:
Enter the row size:
6
 ******
   *****
     ****
       ***
         **
           *

Program in Python

Here is the source code of the Python Program to print the Inverted Half Pyramid Star pattern.

print("Enter the row size:")
row_size=int(input())
for out in range(row_size+1):
    for j in range(out):
        print(" ",end="")
    for p in range(row_size+1,out+1,-1):
        print("*",end="")
    print("\r")
Input/Output:
Enter the row size:
4
****
 ***
  **
   *



Post a Comment

2 Comments

  1. Here is solution is wrong
    for space the condition should be in<=out-1;

    ReplyDelete

Please do not Enter any spam link in the comment box