Pattern 330

Pattern 330 post thumbnail image

C

#include <stdio.h>
#include <math.h>

int main()
{
  int n = 5; // prefer odd
  int i,j;
  int m = n / 2 + 1;
  for (i = 1; i <= n; i++)
  {
    for (j = 1; j <= n; j++)
    {
      if (i == m)
        printf("%d ", abs(j));
      else if (j == m)
        printf("%d ", abs(i));
      else
      {
        printf("  ");
      }

    }
    printf("\n");
  }
  return 0;
}

C++

#include <iostream.h>
#include <math.h>

int main()
{
  int n = 5; // prefer odd
  
  int m = n / 2 + 1;
  for(int i = 1; i <= n; i++)
  {
    for(int j = 1; j <= n; j++)
    {
      if (i == m)
        cout<<abs(j)<<" ";
      else if (j == m)
        cout<<abs(i)<<" ";
      else
      {
        cout<<"  "; // 2ws        
      }
      
    }
    cout<<endl;
  }
  return 0;
}

Java

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

	  int m = n / 2 + 1;
	  for (int i = 1; i <= n; i++)
	  {
		for (int j = 1; j <= n; j++)
		{
		  if (i == m)
		  {
			System.out.print(Math.abs(j)+" ");
		  }
		  else if (j == m)
		  {
			System.out.print(Math.abs(i)+" ");
		  }
		  else
		  {
			System.out.print("  "); //2ws
		  }

		}
		System.out.println();
	  }
	  
	}
}

C#

using System;

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

    int m = n / 2 + 1;
    for (int i = 1; i <= n; i++)
    {
      for (int j = 1; j <= n; j++)
      {
        if (i == m)
        {
          Console.Write(Math.Abs(j) + " ");
        }
        else if (j == m)
        {
          Console.Write(Math.Abs(i) + " ");
        }
        else
        {
          Console.Write("  "); //2ws
        }

      }
      Console.WriteLine();
    }

    Console.ReadKey(true);

  }
}

Python

n = 5  # prefer odd
m = n // 2 + 1

for x in range(1, n + 1):
  for y in range(1, n + 1):
      if x == m:
         print(abs(y), end=" ")
      elif y == m:
         print(abs(x), end=" ")
      else:
         print("", end="  ")  # 2ws
  print()
0 0 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Patterns