C# Program to Print different Shapes
Program Statement:
Write a program using for loop which prints the following output on the screen.
*
***
*****
*******
*********
***********
Solution:
static void Main(string[] args)
{
for (int i = 0; i <= 10; i=i+2)
{
for (int j = 0; j <= i; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
Console.ReadLine();
}
article C# Program to Print different Shapes | Triangle | half triangle has been completed in the discussion
hopefully the information C# Program to Print different Shapes | Triangle | half triangle that we provide can be useful for you to know the development of technology in the present
articles C# Program to Print different Shapes | Triangle | half triangle we have conveyed to you, if feel this information is useful and you want to bookmark or share so that more people who know please use link https://profsmythe.blogspot.com/2013/12/c-program-to-print-different-shapes.html.
Tag :
Csharp,
programs,
0 comments:
Post a Comment