*       *
** **
*** ***
**** ****
*********
** **
*** ***
**** ****
*********
Problem Statement:- Program to Print the Inverted Pant's Shape Star Pattern.
Sample Input/Output:-
Data requirement:-
Input Data:- row_size
Output Data:- *
Additional Data:-in or inn(for python), out
Program in C
Here is the source code of the C Program to Print the Inverted Pant's Shape Star Pattern.
Code:
#include<stdio.h>
int main()
{
    int out,in;
    printf("Enter the row size:");
	    int row_size;
	    scanf("%d",&row_size);
       for(out=1;out<=row_size;out++)
       {
           for(in=1;in<row_size*2;in++)
           {
                if(in<=out || in>=row_size*2-out)
               {
	    	 printf("*");
	     }
	     else
         {
             printf(" ");
         }}
        printf("\n");
}}
Enter the row size:5
*       *
**     **
***   ***
**** ****
*********
Program in C++
Here is the source code of the C++ Program to Print the Inverted Pant's Shape Star Pattern
Code:
#include<iostream>
using namespace std;
int main()
{
    int out,in,p;
    cout<<"Enter the row size:";
	    int row_size;
	    cin>>row_size;
       for(out=1;out<=row_size;out++)
       {
           for(in=1;in<row_size*2;in++)
           {
                if(in<=out || in>=row_size*2-out)
               {
	    	 cout<<"*";
	           }
	            else
               {
	    		 cout<<" ";
               }}
	    	 cout<<"\n";
}}
Enter the row size:4
*     *
**   **
*** ***
*******
Program in Java
Here is the source code of the Java Program to Print the Inverted Pant's Shape Star Pattern.
Code:
import java.util.Scanner;
public class StarPattern15 {
	public static void main(String[] args) {
		Scanner cs=new Scanner(System.in);
        System.out.println("Enter the row size:");
       int out,in;
       int row_size=cs.nextInt();
       for(out=1;out<=row_size;out++)
       {
           for(in=1;in<row_size*2;in++)
           {
               if(in<=out || in>=row_size*2-out)
               {
                  System.out.printf("*");
               }
               else
               {
                System.out.printf(" ");    
               }
           }
           System.out.println(); 
       }
       cs.close();
	}
}
Enter the row size:
5
*       *
**     **
***   ***
**** ****
*********
Program in Python
Here is the source code of the Python Program to Print the Inverted Pant's Shape Star Pattern.
Code:
row_size=int(input("Enter the row size:"))
for out in range(1,row_size+1):
    for inn in range(1,row_size*2):
        if inn<=out or inn>=row_size*2-out:
            print("*",end="")
        else:
            print(" ", end="")
    print("\r")
Enter the row size:3
*   *
** **
*****
 

0 Comments
Please do not Enter any spam link in the comment box