mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
commit
1b045bd4cb
29
Strong number
Normal file
29
Strong number
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#include<stdio.h>
|
||||||
|
void strng(int a)
|
||||||
|
{
|
||||||
|
int j=a;
|
||||||
|
int sum=0;
|
||||||
|
int b,i,fact=1;
|
||||||
|
while(a>0)
|
||||||
|
{
|
||||||
|
fact=1;
|
||||||
|
b=a%10;
|
||||||
|
for(i=1;i<=b;i++)
|
||||||
|
{
|
||||||
|
fact=fact*i;
|
||||||
|
}
|
||||||
|
a=a/10;
|
||||||
|
sum=sum+fact;
|
||||||
|
}
|
||||||
|
if(sum==j)
|
||||||
|
printf("%d is a strong number",j);
|
||||||
|
else
|
||||||
|
printf("%d is not a strong number",j);
|
||||||
|
}
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
int a;
|
||||||
|
printf("Enter the number to check");
|
||||||
|
scanf("%d",&a);
|
||||||
|
strng(a);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user