C# Armstrong Number Tutorial with Examples

C# Armstrong Number Tutorial with Examples

Today, We want to share with you C# Armstrong Number Tutorial with Examples.
In this post we will show you Armstrong Number in C#, hear for armstrong number in c# using while loop we will give you demo and example for implement.In this post, we will learn about armstrong number in c# while loop with an example.

Armstrong Number in C# with example

In this post, we will learn about Armstrong Number in C# with example

READ :  Angular use scope object Example

.

Now in this post, I will explain how to check whether the number is Armstrong or not.

Armstrong number is a number which is equal to the sum of cubes of its own digits. For example 0, 1, 153, 370, 371 and 407 are the Armstrong numbers.

Now create Console Application in Visual Studio and write below lines of code in it.

[php]using System;

namespace InfinityKnow
{
class Program
{
static void Main(string[] args)
{
// C# program to check whether the number is Armstrong or not

int _Number, r, sum = 0, temp;
Console.Write(“Enter the Number= “);
_Number = int.Parse(Console.ReadLine());
temp = _Number;

while (_Number > 0)
{
r = _Number % 10;
sum = sum + (r * r * r);
_Number = _Number / 10;
}
if (temp == sum)
Console.Write(“It is Armstrong Number.”);
else
Console.Write(“Not An Armstrong Number.”);

READ :  C# Arrays Tutorial with Examples

Console.ReadKey(); // To hold the console screen.
}
}
}
[/php]

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about perfect number program in c#.
I would like to have feedback on my Infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment