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();
}
just so much information about C# Simple Loop Program example to print characters
hopefully the information we provide about C# Simple Loop Program example to print characters can give answer your question to google, and you feel satisfied about this.
you just finished reading the article with the title C# Simple Loop Program example to print characters if you feel this information need to bookmark or share please use link https://faultyaspirations.blogspot.com/2013/12/c-simple-loop-program-example-to-print.html do not forget there are many other information in this blog, please visit other page.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar