#include<stdio.h> #include<conio.h> main() { int n,x,digit,s=0; printf("\n enter any number"); scanf("%d",&n); x=n; do { digit=n%10; s=s+digit*digit*digit; n=n/10; }while(n>0); if(s==t) printf("\n the number is AMSTRONG"); else printf("\n the number is NOT AMSTRONG"); getch(); }
Output: