img
Question:
Published on: 3 December, 2024

Write a C program to find a number is AMSTRONG or NOT.

Answer:

 

#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:

Random questions