C# Simple Loop Program example to print characters

C# Simple Loop Program example to print characters - welcome to our blog that presents the full content How Gadget, the discussion this time we're discussing that you find that C# Simple Loop Program example to print characters, we have provided complete information with images that are easy to understand, the explanation is simple but complete, therefore please read until the end :)

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,

You can also see our article on:


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 : , , ,

0 Response to "C# Simple Loop Program example to print characters"

Post a Comment