Pattern 178

Pattern 178 post thumbnail image

C

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

int main()
{

  int n = 3;
  int i,j;

  for(i = n; i >= -n; i--)
  {
    for(j = 0; j < n-abs(i); j++)
    {
      printf("%c", j + 65);
    }
    printf("\n");
  }
  return 0;
}

C++

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

int main()
{

 int n = 3;
 

  for(int i = n; i >= -n; i--)
  {
    for(int j = 0; j < n-abs(i); j++)
    {
      cout<<(char)(j + 65);
    }
    cout<<endl;
  }
 return 0;
}

Java

class PatternProg
{
	public static void main(String args[])
	{

	 int n = 3;


	  for (int i = n; i >= -n; i--)
	  {
		for (int j = 0; j < n - Math.abs(i); j++)
		{
		  System.out.print((char)(j + 65));
		}
		System.out.println();
	  }
	 
	}
}

C#

using System;

class PatternProg
{
  public static void Main()
  {

    int n = 3;


    for (int i = n; i >= -n; i--)
    {
      for (int j = 0; j < n - Math.Abs(i); j++)
      {
        Console.Write((char)(j + 65));
      }
      Console.WriteLine();
    }

    Console.ReadKey(true);
  }
}

Python

n = 3

for x in range(n, - (n + 1), -1):
  for y in range(0,n - abs(x)):
    print(chr(y + 65), end="")
  print()
0 0 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Related Patterns