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();
}
article C# Simple Loop Program example to print characters has been completed in the discussion
hopefully the information C# Simple Loop Program example to print characters that we provide can be useful for you to know the development of technology in the present
articles C# Simple Loop Program example to print characters we have conveyed to you, if feel this information is useful and you want to bookmark or share so that more people who know please use link https://profsmythe.blogspot.com/2013/12/c-simple-loop-program-example-to-print.html.
Tag :
Csharp,
programming,
programs,
0 comments:
Post a Comment