C# Simple Loop Program example to print characters - Did you know that every day there is always a new technology that is created? if you want to know please refer to the blog
Gadget News well now we will discuss first about C# Simple Loop Program example to print characters as you need now, we have compiled this article carefully, so please see to finish.
Articles :
C# Simple Loop Program example to print characters
full Link :
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();
}
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