Samsung Galaxy Note, 4G LTE Plans, Transfer Photos Videos from iPhone to Samsung, Network Performance, Mobile Accounts, Furious Gold SPD TooL, Latest Version Full Setup

Info Program to Print Armstrong numbers in C#

Info Program to Print Armstrong numbers in C# - this blog we have built from a few years ago and already very much information about gadgets that we convey and a lot of blog visitors New Blog Techno News who are satisfied with the information, we will always try to update the latest information for you, first about Info Program to Print Armstrong numbers in C# many already we collect data to make this article so you do not miss the news, please see:

Articles : Info Program to Print Armstrong numbers in C#
full Link : Info Program to Print Armstrong numbers in C#
Article Csharp, Article programs,

You can also see our article on:


Info Program to Print Armstrong numbers in C#

C# Program to Print out all Armstrong numbers between 1 and 500

Program Statement:
Write a program to print out all Armstrong numbers between 1 and 500. If sum of cubes of each digit of the number is equal to the number itself, then the number is called an Armstrong number. For example, 153 = (1 * 1 * 1) + (5 * 5 * 5) + (3 * 3 * 3)

Solution:
 public class armstrong
{
int x, a, res, sum = 0;
public void find()
{
Console.WriteLine("\nAll Armstrong Numbers between 1 and 500 \n");
for (x = 1; x <= 500; x++)
{
a = x;
while (a != 0)
{
res = a % 10;
a = a / 10;
sum = sum + (res * res * res);
}
if (x == sum)
Console.Write(" {0} ", x);
sum = 0;
}
Console.WriteLine("\n");
}
}




articles Info Program to Print Armstrong numbers in C# finished in discussion

hopefully the information we convey about Info Program to Print Armstrong numbers in C# can benefit you in getting new knowledge about technology,

you just finished reading the information Info Program to Print Armstrong numbers in C# we hope this informmation can answer the question you submit to googlle, if you want to bookmark or share please use link https://moymoycikukecik.blogspot.com/2013/12/info-program-to-print-armstrong-numbers.html and do not forget to always visit this blog to get the latest information every day.

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

Related : Info Program to Print Armstrong numbers in C#

0 komentar:

Posting Komentar