write a program to find the factorial value in automation anywhere
Answers
Answered by
0
Answer:
#include < stdio.h >
int main()
{
int n,i=1,s=1;
scanf("%d",&n);
while( n < =0 )
{
s=s*i;
i++;
if( s==1 )
break;
}
if( )
printf("yes");
else
printf("no");
return 0;
}
I Hope It Helps
Plz Mark As BRAINLIEST
Similar questions