You are on page 1of 2

Sardar Vallabhbhai Patel Institute of Technology- Vasad

Name:-________________________________ ErNO:-_________________
Class:

Practical 01

AIM : Write C# code to display the asterisk pattern as shown below:


*****
*****
*****
*****
*****
Program:-
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace pr1
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i <= 5; i++)
{
for (int j = 0; j <= 5; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}

DOT NET TECHNOLOGY 2160711 Page 1


Sardar Vallabhbhai Patel Institute of Technology- Vasad

Output:-

DOT NET TECHNOLOGY 2160711 Page 2

You might also like