Pattern 404

Pattern 404 post thumbnail image

C

#include <stdio.h>

int main()
{
  int n = 7;
  int i,j;

  int x = n / 2 + 1;


  for(i=1; i <= n; i++)
  {
    for(j=1; j <= n; j++)
    {
      if (j >= x && j <= n - x + 1)
      {
        printf("* ");
      }
      else
      {
        printf("  ");
      }
    }
    if (i <= n / 2)
      x--;
    else
      x++;
    printf("\n");
  }
  return 0;
}

C++

#include <iostream.h>

int main()
{
  int n = 7;
  

  int x = n / 2 + 1;
   
  
  for(int i =1; i <= n; i++)
  {
    for(int j =1; j <= n; j++)
    {
      if (j >= x && j <= n - x + 1)
      {
        cout<<"* ";
      }
      else
      {
        cout<<"  "; // 2ws
      }
    }
    if (i <= n / 2)
      x--;
    else
      x++;
    cout<<endl;
  }
  return 0;
}

Java

class PatternProg
{
	public static void main(String args[])
	{
	  int n = 7;


	  int x = n / 2 + 1;


	  for (int i = 1; i <= n; i++)
	  {
		for (int j = 1; j <= n; j++)
		{
		  if ((j >= x) != false && j <= n - x + 1)
		  {
			System.out.print("* ");
		  }
		  else
		  {
			System.out.print("  "); //2ws
		  }
		}
		if (i <= n / 2)
		{
		  x--;
		}
		else
		{
		  x++;
		}
		System.out.println();
	  }
	  
	}
}

C#

using System;

class PatternProg
{
  public static void Main()
  {
    int n = 7;


    int x = n / 2 + 1;


    for (int i = 1; i <= n; i++)
    {
      for (int j = 1; j <= n; j++)
      {
        if ((j >= x) != false && j <= n - x + 1)
        {
          Console.Write("* ");
        }
        else
        {
          Console.Write("  "); //2ws
        }
      }
      if (i <= n / 2)
      {
        x--;
      }
      else
      {
        x++;
      }
      Console.WriteLine();
    }

    Console.ReadKey(true);

  }
}

Python

n = 7
d = n // 2 + 1

for x in range(1, n + 1):
    for y in range(1, n + 1):
        if (y >= d) != 0 and y <= n - d + 1:
            print("* ", end="")
        else:
            print("  ", end="")  # 2ws
    if x <= n // 2:
        d -= 1
    else:
        d += 1
    print()
5 2 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Patterns