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 about the C# Simple Loop Program example to print characters has been discussed
A few of our information about the C# Simple Loop Program example to print characters, hopefully give more knowledge for you
You have finished reading
C# Simple Loop Program example to print characters and many articles about Techno News in our blog this, please read it. and url link of this article is
https://ikkemunandar.blogspot.com/2013/12/c-simple-loop-program-example-to-print.html Hopefully discussion articles on
provide more knowledge about the world of new tech gadgets and Techno News.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar