Pattern 350

Pattern 350 post thumbnail image

C

#include <stdio.h>
int main()
{
  int n = 7; // size

  int i,j;

  for(i = 1; i <= n; i++)
  {
    for(j = 1; j <= n; j++)
    {
      if (j==1 || i==j || i==n)
      {
        printf("* ");
      }
      else
      {
        printf("  "); // 2ws
      }
    }

    printf("\n");
  }

  return 0;
}

C++

#include <iostream.h>

int main()
{
 int n = 7; // size

 int i,j;

 for(i = 1; i <= n; i++)
 {
  for(j = 1; j <= n; j++)
  {
   if (j==1 || i==j || i==n)
   {
    cout<<"* ";
   }
   else
   {
    cout<<"  "; // 2ws
   }
  }
  
  cout<<endl;
 }

return 0;
}

Java

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

        for (int i = 1; i <= n; i++)
        {
            for (int j = 1; j <= n; j++)
            {
                if (j == 1 || i == j || i == n)
                {
                    System.out.print("*");
                }
                else
                {
                    System.out.print(" ");
                }
            }

            System.out.println();
        }

    }
}

C#

using System;

class PatternProg
{
  public static void Main()
  {
    int n = 7; // size

    for (int i = 1; i <= n; i++)
    {
      for (int j = 1; j <= n; j++)
      {
        if (j == 1 || i == j || i == n)
        {
          Console.Write("*");
        }
        else
        {
          Console.Write(" ");
        }
      }

      Console.WriteLine();
    }
    Console.ReadKey(true);
  }
}

Python

n = 5  # size
for x in range(1, n + 1):
    for y in range(1, n + 1):
        if (y == 1 or x == y or x == n):
            print("*", end="")
        else:
            print(" ", end="")
    print()
0 0 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Patterns