Test All Gadget, Z3X BOX Samsung, Miracle Box, Smart Phone Flash Tool, Stock ROMs, Android Tool, apps, Data Plans Internet

Sabtu, 28 Desember 2013

C# Program to display the different series output on the screen

C# Program to display the different series output on the screen - discussing about technology is my hobby, with media blogs Test All Gadget we can share the knowledge of technology that continues to grow with various ways of use that is intended to simplify your life, now we will discuss first about that in your search that is C# Program to display the different series output on the screen please refer to our explanation because we will try to make a complete article for you.

Articles : C# Program to display the different series output on the screen
full Link : C# Program to display the different series output on the screen
Article Csharp, Article programs,

You can also see our article on:


C# Program to display the different series output on the screen

C# Program to display the different series output on the screen

Program Statement:
Write a program which display the following output on the screen.
1 2 3 4 5
1 4 9 16 25
1 8 27 64 125

Solution:
 static void Main(string[] args)
{
for (int i = 1; i <= 5; i++)
Console.Write(i+" ");

Console.WriteLine();

for (int i = 1; i <= 5; i++)
Console.Write(i * i+" ");

Console.WriteLine();

for (int i = 1; i <= 5; i++)
Console.Write(i * i * i+" ");

Console.ReadLine();
}




enough already articles C# Program to display the different series output on the screen

hopefully the information C# Program to display the different series output on the screen that we submit on this blog can be useful for your life and all the people who visit this blog.

you just finished reading the article with the title C# Program to display the different series output on the screen if you intend to bookmark or shre please use the link https://testallforone.blogspot.com/2013/12/c-program-to-display-different-series.html and do not visit other pages on this blog because it still sangant a lot of information about gadgets from the old to the latest.

Tag : , ,
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : C# Program to display the different series output on the screen

2 komentar: