Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to check whether a number is armstrong number in C#

1 Answer

0 votes
using System;

class Program
{
    static int armstrong(int n) {
        int reminder = 0, sum = 0, total_digits = (int)Math.Log10(n) + 1;;
     
        while (n > 0) {
            reminder = n % 10;
            sum += (int)Math.Pow(reminder, total_digits);
            n = n / 10;
        }
        return sum;
    }
    static void Main() {
        int n = 153; // 1*1*1 + 5*5*5 + 3*3*3 = 153 
          
        if (n == armstrong(n))  
            Console.WriteLine("Armstrong number");   
        else
            Console.WriteLine("Not armstrong number");   
            
        n = 9474; // 9*9*9*9 + 4*4*4*4 + 7*7*7*7 + 4*4*4*4 =  9474
          
        if (n == armstrong(n))  
            Console.WriteLine("Armstrong number");   
        else
            Console.WriteLine("Not armstrong number");  
    }
}
 
 
 
 
/*
run:
   
Armstrong number
Armstrong number
   
*/

 



answered Aug 21, 2021 by avibootz
edited Jan 7, 2022 by avibootz

Related questions

1 answer 118 views
1 answer 116 views
1 answer 114 views
1 answer 232 views
1 answer 133 views
2 answers 151 views
2 answers 144 views
...