Pattern 370

Pattern 370 post thumbnail image

C

#include <stdio.h>
int main()
{
  int n = 5; // size

  int px = n; // print controls
  int py = n;

  int i,j; // loop var

  for(i = 1; i <= n; i++)
  {
    for(j = 1; j <= n*2; j++)
    {
      if (j == px || j == py )
      {
        printf("%d",i);
      }
      else
      {
        printf(" ");
      }
    }

    px--;
    py++;

    printf("\n");
  }

  return 0;
}

C++

#include <iostream.h>

int main()
{
 int n = 5; // size

 int px = n; // print controls
 int py = n;

 int i,j; // loop var

 for(i = 1; i <= n; i++)
 {
  for(j = 1; j <= n*2; j++)
  {
   if (j == px || j == py )
   {
    cout<<i;
   }
   else
   {
    cout<<" ";
   }
  }
  
  px--;
  py++;
  
  cout<<endl;
 }

return 0;
}

Java

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

        int px = n; // print controls
        int py = n;

        for (int i = 1; i <= n; i++)
        {
            for (int j = 1; j <= n * 2; j++)
            {
                if (j == px || j == py)
                {
                    System.out.print(i);
                }
                else
                {
                    System.out.print(" ");
                }
            }

            px--;
            py++;

            System.out.println();
        }
    }
}

C#

using System;

public class PatternProg
{

  public static void Main(string[] agrs)
  {

    int n = 5; // size

    int px = n; // print controls
    int py = n;

    for (int i = 1; i <= n; i++)
    {
      for (int j = 1; j <= n * 2; j++)
      {
        if (j == px || j == py)
        {
          Console.Write(i);
        }
        else
        {
          Console.Write(" ");
        }
      }

      px--;
      py++;

      Console.WriteLine();
    }
    Console.ReadKey(true);
  }
}

Python

n = 5  # size=5
px = n
py = n
for x in range(1, n + 1):
    for y in range(1, n * 2 + 1):
        if (y == px or y == py):
            print(x, end="")
        else:
            print(" ", end="")
    px -= 1
    py += 1
    print()
0 0 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Patterns