This is about : C# Simple Loop Program example to print characters
And this article : C# Simple Loop Program example to print characters
Article Csharp, Article programming, Article programs,
C# Simple Loop Program example to print characters
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();
}
Information C# Simple Loop Program example to print characters has been completed we present
A few of our information about the C# Simple Loop Program example to print characters, we hope you benefit from this article
You have just read the article C# Simple Loop Program example to print characters and many articles about gadget in our blog this, please read it. and url link of this article is https://howtomonetizeeverything.blogspot.com/2013/12/c-simple-loop-program-example-to-print.html Hopefully discussion articles on provide more knowledge about the world of tech gadgets.
Tag : Csharp, programming, programs,
0 Response to "C# Simple Loop Program example to print characters"
Post a Comment