C De Faktöriyel Hesaplamak

C De Faktöriyel Nasıl Hesaplanır?

C de faktöryel hesaplamak için aşağıdaki kodları kullanabilirsiniz.

#include <stdio.h>

int main(){
int ff;
printf(“Enter a number: “);
scanf(“%d”, &ff);
unsigned long fact = 1;
for(int ea = 1; ea <= ff; ea++){
fact *= ea;
}

printf(“%d! is %d”,ff,fact);
}

 

C de faktöriyel hesaplamak

Leave a Reply

Your email address will not be published. Required fields are marked *