Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconGeneralbreadcumb forward arrow iconWhat is the Armstrong Number in Java? It’s Prerequisites and Algorithm

What is the Armstrong Number in Java? It’s Prerequisites and Algorithm

Last updated:
8th Apr, 2021
Views
Read Time
6 Mins
share image icon
In this article
Chevron in toc
View All
What is the Armstrong Number in Java? It’s Prerequisites and Algorithm

What is the Armstrong Number?

A given number x is called an Armstrong number of order n if its equal to sum of its digits raised to power n, i.e:

abc= pow(a,n) + pow(b,n) + pow(c,n)

A positive integer of n digits is an Armstrong number (of order 3) if it is equal to the sum of cubes of its digits. For example:

Input: 153

Ads of upGrad blog

Output: Yes

1*1*1 + 5*5*5 + 3*3*3 = 153

Thus, 153 is an Armstrong number

Input: 121

Output: No

1*1*1 + 2*2*2 + 1*1*1 = 10

Thus, 120 is not a Armstrong number.

Prerequisites and Algorithm

In this article, we will learn to check whether an input number is an Armstrong number or not. For this, we will be using a while loop and for loop in Java. To understand this program, we need knowledge of the following topics in Java:

  •   Java if-else statement
  •   Java for Loop
  •   Java while and do-while loop

Algorithm:

  1.     Take an integer variable x
  2.     Value is assigned to the variable x
  3.     The digits of the value are split
  4.     The cube value of each digit is found
  5.     Add the values of all the cubes
  6.     The output is saved to sum variable
  7.     If sum=X, print Armstrong number

If sum != X, print not Armstrong number

Program to Check Armstrong Number in Java

1. Armstrong number in Java of order 3

Code:

public class Armstrong{ 

             public static void main(String[] args)  { 

               int x=0,a,temp; 

               int n=153;//It is the number to check Armstrong 

               temp=n; 

               while(n>0) 

               { 

               a=n%10; 

               n=n/10; 

               x=x+(a*a*a); 

               } 

               if(temp==x) 

               System.out.println(“Armstrong number”);  

               else 

               System.out.println(“Not Armstrong number”);  

             } 

           }

 Output:

 

Explanation

First, a given number N’s value is stored in another integer variable, x. This is done as we need to compare the values of the original number and the final number at the end. A while loop is used to lop through the number N until it is equal to 0. With every iteration, the last digit of N is stored in a.

Then the result is computed by cubing a or using Math. pow() and adding it to x. When the last digit is removed from N, it is divided by 10. Finally =, temp and X are compared. If they are equal, it’s an Armstrong number. Otherwise, it isn’t.

2. Armstrong number in Java of order n

Code:

public class Armstrong

{

               /* Function to calculate a raised to the

               power b */

               int power(int a, long b)

               {

                                  if( b == 0)

                                                    return 1;

                                  if (b%2 == 0)

                                                    return power(a, b/2)*power(a, b/2);

                                  return a*power(a, b/2)*power(a, b/2);

               }

 

               /* Function to calculate order of the number */

               int order(int a)

               {

                                  int n = 0;

                                  while (a != 0)

                                  {

                                                    n++;

                                                    a = a/10;

                                  }

                                  return n;

               }

 

               // Function to check whether the given number is Armstrong number or not

               boolean Armstrong (int a)

               {

                                  // Calling the order function

                                  int n = order(a);

                                  int temp=a, sum=0;

                                  while (temp!=0)

                                  {

                                                    int r = temp%10;

                                                    sum = sum + power(r,n);

                                                    temp = temp/10;

                                  }

 

                                  // If it satisfies Armstrong condition

                                  return (sum == a);

               }

               // Driver Program

               public static void main(String[] args)

               {

                                  Armstrong obj = new Armstrong();

                                  int a = 153;

                                  System.out.println(obj.isArmstrong(a));

                                  a = 1276;

                                  System.out.println(obj.isArmstrong(a));

               }

}

Output:

 

Explanation

In this program, instead of a while loop, we have used recursion. The first function is used to calculate a number a raised to power b. Math.pow(a,b) can also be used for the same. The second function checks the order of the number, like, 153 is of order 3. Finally, a Boolean function Armstrong is used to return if the number is Armstrong or not. Then an object of the Armstrong class is used to call the functions.

Java Program to Print Armstrong Numbers in the Given Range

Code:

public class Armstrong

{

           public static void main(String[] arg)

           {

           int i=0,x;

           System.out.println(“Armstrong numbers between 0 to 999”);

           while(i<1000)

           {

           x=armstrongOrNot(i);

           if(x==i)

           System.out.println(i);

           i++;

           }

           }

static int armstrongOrNot(int n)

{

           int c,a=0;

           while(n!=0)

           {

                          c=n%10;

                          a=a+(c*c*c);

                          n/=10 ;

           }

           return a;

}

}

Output:

 

Ads of upGrad blog

Explanation: In this program, each number between the given interval low and high, are checked. Post each check, the sum and number of digits are restored to 0.

Conclusion

 In this article, we covered an Armstrong number in java in detail. We saw how to check if a number is an Armstrong number of order n and order 3. We also saw how you could get all the Armstrong numbers between a lower and upper bound.

If you wish to improve your Java skills, you need to get your hands on these java projects. If you’re interested to learn more about Java, full-stack development, check out upGrad & IIIT-B’s Executive PG Program in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

If you are looking to learn more about Java and move up in your technical career, then explore free Java online course by India’s largest online higher education company, upGrad. Contact us for more details. 

Profile

Arjun Mathur

Blog Author
Arjun is Program marketing manager at UpGrad for the Software development program. Prior to UpGrad, he was a part of the French ride-sharing unicorn "BlaBlaCar" in India. He is a B.Tech in Computers Science from IIT Delhi and loves writing about technology.
Get Free Consultation

Selectcaret down icon
Select Area of interestcaret down icon
Select Work Experiencecaret down icon
By clicking 'Submit' you Agree to  
UpGrad's Terms & Conditions

Our Popular MBA Course

Frequently Asked Questions (FAQs)

1What is the logic behind the Armstrong number?

The Armstrong number is defined as a number in any number base that produces the sum of the same number when each one of the digits is raised to the power of the number's digits. The Armstrong number characteristic holds true in every number system. When it comes to practicing computer programming for applications, the Armstrong number program is considered one of the most fundamental. The logic behind the Amstrong number is that when built, the computer programmer understands different syntaxes and problem solving skills; hence, the significance.

2What is Java programming?

Java is an Object-Oriented programming language that has been one of the most popular for many years. It is not regarded as true object-oriented, though, because it supports basic data types such as int, char, and so on. First, the Java program is written into byte code. Then, independent of the underlying architecture, the byte code runs on the Java Virtual Machine (JVM). The syntax of Java is similar to that of C/C++. However, Java can not provide low-level coding languages such as pointers. In addition, Java programs are always expressed as classes and objects. Java is utilized in a wide range of applications, including mobile apps, desktop apps, web apps, client-server apps, corporate apps, and more.

3How is Java different from Python and C++?

Java code is more manageable when compared to C++ since it does not enable many things that, if used wrong, might lead to inadequate/inefficient programming. In Java, references to non-primitive are always used. As a result, unlike C++, we can't provide big objects to functions in Java; instead, references are passed. Bad memory access is also impossible due to the lack of pointers. Java falls between C++ and Python when compared to Python. Java applications are often quicker than Python equivalents but slower than C++ programs. Java performs static type checking, similar to C++, whereas Python does not.

Explore Free Courses

Suggested Blogs

23 Best Computer Programming Courses To Get a Job in 2024
915451
Summary Best computer programming courses are always in demand. Especially now. Let’s learn about the list of top computer courses available now that
Read More

by Kamal Jacob

16 Jul 2024

Why Should You Be Hired For This Internship Interview Question &#8211; 5 Winning Ways to Answer
514125
Ever wondered why employers stress internships? It’s because they understand the immense value that internships bring to the table. As someone w
Read More

by Nitin Gurmukhani

13 Jul 2024

Best Diploma Courses To Do List in 2024
63572
Merely graduation does not qualify in today’s competitive market. Hence, having post-graduate diploma courses give you better weightage and know
Read More

by Dilip Guru

13 Jul 2024

15 Top Career Options After Engineering: Trending in 2024
371832
Summary: In this article, you will learn about 15 top career options after Engineering. Higher Studies Public Service Undertakings Management Entrep
Read More

by Nitin Gurmukhani

01 Jul 2024

Top 25 Highest Paying Jobs in the World in 2024 [A Complete Guide]
1141510
Summary In this article, you will learn about the top 25 highest-paying jobs in the world. And you will be able to get the answer to ‘Which job has t
Read More

by Nitin Gurmukhani

27 Jun 2024

Future Scope of Marketing: Scope, Salary, Career Opportunities
27029
On an everyday basis, we are introduced to at least one new product, service, or brand. It doesn’t matter in which form you are introduced to them- hu
Read More

by Kamal Jacob

25 Jun 2024

Best Career Options in Sociology: 9 Top Career Opportunities in India
87125
One of the most significant yet scarcely explored careers, sociology owns enormous potential with bright career opportunities for students who are int
Read More

by Nitin Gurmukhani

20 Jun 2024

Top 25 Highest Paying Jobs in India [2024] &#8211; Latest &#038; Trending
2239432
Summary: Professions / Jobs Average Salary Per Annum 2024 Highest Salary Per Annum 2024 Medical Professionals ₹10 Lakhs ₹20 Lakhs Data
Read More

by Nitin Gurmukhani

05 Jun 2024

Top 19 Online Certificate Courses With High Salary in India [2024]
936348
If you’re someone who’s pursued the conventional education path all your life – physical classrooms and face-to-face learning – it is natu
Read More

by Rohan Vats

03 Jun 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon