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();
}
so much information about C# Simple Loop Program example to print characters
hopefully the information we provide dengn title C# Simple Loop Program example to print characters can provide benefits for you in determining the gadget that suits your needs.
you just read the article C# Simple Loop Program example to print characters if you want to bookmark or share please use link https://fullcomicfrenzy.blogspot.com/2013/12/c-simple-loop-program-example-to-print.html there is still a lot of information on this blog if you want to read it please visit other page, umpteen and thank you.
Tag :
Csharp,
programming,
programs,
0 komentar:
Post a Comment