Pattern 152

Pattern 152 post thumbnail image

C

#include <stdio.h>

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

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

C++

#include <iostream.h>

int main()
{
  int n = 5;
  

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

Java

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


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

C#

using System;

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


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

    Console.ReadKey(true);
  }
}

Python

n = 5

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

Related Patterns