Pattern 228

Pattern 228 post thumbnail image

C

#include <stdio.h>
int main()
{
  int i,j;
  int n=4;
  for (i=0; i<=n; i++)
  {
    for (j=n; j>=0; j--)
    {
      if (j>i)
        printf("*");
      else
        printf("%c",j+65);
    }
    printf("\n");
  }
  return 0;
}

C++

#include <iostream.h>
int main()
{
    int i,j;
    int n=4;
    for (i=0; i<=n; i++)
    {
        for (j=n; j>=0; j--)
        {
            if (j>i)
                cout<<"*";
            else
                cout<<char(j+65);
        }
        cout<<endl;
    }
    return 0;
}

Java

  class PatternProg
  {
    public static void main(String args[])
    {
        int n = 4;
        for (int i = 0; i <= n; i++)
        {
            for (int j = n; j >= 0; j--)
            {
                if (j > i)
                {
                    System.out.print("*");
                }
                else
                {
                    System.out.print((char)(j + 65));
                }
            }
            System.out.println();
        }
    }
}

C#

using System;

class PatternProg
{
  public static void Main()
  {
    int n = 4;
    for (int i = 0; i <= n; i++)
    {
      for (int j = n; j >= 0; j--)
      {
        if (j > i)
        {
          Console.Write("*");
        }
        else
        {
          Console.Write((char)(j + 65));
        }
      }
      Console.WriteLine();
    }
    Console.ReadKey(true);
  }
}

Python

n = 4
for x in range(0, n+1):
    for y in range(n, -1, -1):
      if y > x:
        print("*", end="")
      else:
        print(chr(y+65), end="")
    print()

"""
65 > ASCII of 'A'
"""
0 0 votes
Rate this Program
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Patterns