armstrong number in c# console application

armstrong number in c# console application

Hello everyone, I am going to share the code sample for the armstrong number using c# with console application as given below.


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    public class Armstrong
    {
        static void Main(string[] args)
        {
            string myStr;
            Console.WriteLine("Enter the number.");
            myStr = Console.ReadLine();

            int converted = int.Parse(myStr);
            int armstrong = ArmstrongNumber(converted);

            Console.WriteLine(armstrong);
            Console.ReadLine();
        }

        static int ArmstrongNumber(int val)
        {
            int fact, remaind, total = 0;
            while (val > 0)
            {
                fact = val / 10;
                remaind = val % 10;
                total = total + remaind * remaind * remaind;
                val = fact;
            }
            return 1;
        }
    }
}

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

armstrong number in c# console application armstrong number in c# console application Reviewed by Anil Singh on 1:06 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^