Pattern 78

Pattern 78 post thumbnail image

C

#include <stdio.h>

int main()
{
  int n = 5;
  int i,j;
  int x = (n * (n + 1)) / 2;

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

C++

#include <iostream.h>

int main()
{
  int n = 5;
  
  int x = (n * (n + 1)) / 2;
  
  for(int i = 1; i <= n; i++)
  {
    for(int j = n; j >= i; j--)
    {
      cout<<x--<<" ";
    }
    cout<<endl;
  }
  return 0;
}

Java

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

	  int x = (n * (n + 1)) / 2;

	  for (int i = 1; i <= n; i++)
	  {
		for (int j = n; j >= i; j--)
		{
		  System.out.printf("%2d ",x--);
		}
		System.out.println();
	  }
	  
	}
}

C#

using System;

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

    int x = (n * (n + 1)) / 2;

    for (int i = 1; i <= n; i++)
    {
      for (int j = n; j >= i; j--)
      {
        Console.Write("{0,2:D} ", x--);
      }
      Console.WriteLine();
    }

    Console.ReadKey(true);
  }
}

Python

n = 5
d = (n * (n + 1)) // 2

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

Related Patterns