Pattern 327

Pattern 327 post thumbnail image

C

#include <stdio.h>

int main()
{
  int n = 5;
  int i,j;
  for(i = n; i >= 1; i--)
  {
    for(j = 1; j <= n; j++)
    {
      if (j == i || j == n - i + 1)
        printf("%c ", i + 64);
      else
        printf("  ");
    }
    printf("\n");
  }
  return 0;
}

C++

#include <iostream.h>

int main()
{
  int n = 5;
  
  for(int i = n; i >= 1; i--)
  {
    for(int j = 1; j <= n; j++)
    {
      if (j == i || j == n - i + 1)
        cout<<(char)(i + 64)<<" ";
      else
        cout<<"  "; // 2ws
    }
    cout<<endl;
  }
  return 0;
}

Java

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

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

C#

using System;

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

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

    Console.ReadKey(true);

  }
}

Python

n = 5

for x in range(n, 0, -1):
  for y in range(1, n + 1):
    if y == x or y == n - x + 1:
       print(chr(x + 64)+" ",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