Pattern 175

Pattern 175 post thumbnail image

C

#include <stdio.h>

int main()
{
  int n = 7;
  int x = 1;
  int i,j;

  for(i = 1; i <= n; i++)
  {
    for (j = 1; j <= x; j++)
    {
      printf("%2d", x);
    }
    if (i <= n / 2)
      x += 2;
    else
      x -= 2;
    printf("\n");
  }

  return 0;
}

C++

#include <iostream.h>

int main()
{
  int n = 7;
  int x = 1;
  

  for(int i = 1; i <= n; i++)
  {
    for(int j = 1; j <= x; j++)
    {
      cout<<x;
    }
    if (i <= n / 2)
      x += 2;
    else
      x -= 2;
    cout<<endl;
  }

  return 0;
}

Java

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


	  for (int i = 1; i <= n; i++)
	  {
		for (int j = 1; j <= x; j++)
		{
		  System.out.print(x);
		}
		if (i <= n / 2)
		{
		  x += 2;
		}
		else
		{
		  x -= 2;
		}
		System.out.println();
	  }

	  
	}
}

C#

using System;

class PatternProg
{
  public static void Main()
  {
    int n = 7;
    int x = 1;


    for (int i = 1; i <= n; i++)
    {
      for (int j = 1; j <= x; j++)
      {
        Console.Write(x);
      }
      if (i <= n / 2)
      {
        x += 2;
      }
      else
      {
        x -= 2;
      }
      Console.WriteLine();
    }


    Console.ReadKey(true);
  }
}

Python

n = 7
d = 1

for x in range(1, n + 1):
  for y in range(1, d + 1):
      print(d,end="")

  if x <= n // 2:
     d += 2
  else:
     d -= 2

  print()
0 0 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Related Patterns