Write a Java Program to print Armstrong numbers between desired Range

By | 24.01.2017

Java Program to print Armstrong numbers between desired Range


Print Armstrong Numbers:

To print Armstrong number in Java Programming, you have to ask to the user to enter the interval in which he/she want to find Armstrong numbers between desired range as shown in the below program.

Let’s look at the following Java program.

SOURCE CODE ::

import java.util.Scanner;
import java.lang.Math;
public class Armstrong1
{
    public static void main(String args[])
    {
        int num1, num2, i, n, rem, temp, count=0,a;
        Scanner scan = new Scanner(System.in);
        
        System.out.print("Enter the Interval :\n");             
        System.out.print("Enter Starting Number : ");
        num1 = scan.nextInt();
        
        System.out.print("Enter Ending Number : ");
        num2 = scan.nextInt();
                
        for(i=num1; i<num2; i++)
        {
            temp = i;
            n = 0;
            a=countdigit(temp);
            while(temp!=0)
            {
                rem = temp%10;
                temp = temp/10;
                 n = (int) (n + Math.pow(rem,a)) ;

            }
            if(i == n && i>10) //armstrong no.s greater than 1 digit number...
            {
                if(count == 0)
                {
                    System.out.print("Armstrong Numbers Between the Given Interval are :\n");
                }
                System.out.print(i + "  ");
                count++;
            }
        }
        if(count == 0)
        {
            System.out.print("Armstrong Number not Found between the Given Interval.");
        }
    }
    
    //function to count no of digits in each iteration of number.....
    public static int countdigit(int n)
    {
      int c=0;
      
      while(n>0)
      {
          n=n/10;
          
          c++;
      }
      return c;
      
    }
}

 

OUTPUT ::

 

Enter the Interval :
Enter Starting Number : 100
Enter Ending Number : 10000

Armstrong Numbers Between the Given Interval are :
153  370  371  407  1634  8208  9474

 

3.7 3 votes
Article Rating
Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Kareim Talat

nice