DEV Community

hema latha
hema latha

Posted on

Armstrong Number Program

package day1;

public class Amstrong {

public static void main(String[] args) {
    // TODO Auto-generated method stub
    int no = 1634;
    int no1 = no;
    int armstrong = 0;
    while(no>0)
    {
        int rem= no%10;
        armstrong = armstrong + (rem*rem*rem*rem);
        no = no/10;
    }
    System.out.println(armstrong);
    if (armstrong == no1)
        System.out.println("armstrong");
    else 
        System.out.println("Not armstrong");

}
Enter fullscreen mode Exit fullscreen mode

}

out put = 1634
armstrong

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay