Simple Loop Problem to Print A B D H P
Problem Statement:
Write a program using for loop which prints the following output. (You have to find a pattern to print alphabetics in this order)
A B D H P
Solution:
static void Main(string[] args)
{
int i,j,ch=0,n;
Console.Write("A ");
for (i = 1; i <= 4; i++)
{
n = 1;
for (j = 1; j <= i; j++)
{
n = n * 2;
ch = 64 + n;
}
Console.Write((char)ch + " ");
}
Console.ReadLine();
}
Articles about C# Simple Loop Program example to print characters finished discussed
We think it is enough information about C# Simple Loop Program example to print characters, hopefully the information we give can give benefit for you,
If you feel the information C# Simple Loop Program example to print characters that we provide can provide benefits for others please share with link https://southernmatron.blogspot.com/2013/12/c-simple-loop-program-example-to-print.html thank you for visiting our blog page and do not forget to visit other pages.
Tag :
Csharp,
programming,
programs,
0 komentar:
Post a Comment