mustaphos
MB Üyesi
- Kayıt
- 14 Eylül 2015
- Mesajlar
- 35
- Tepkiler
- 8
- Yaş
- 29
- Meslek
- Öğrenci
- Üniv
- Anadolu University
Merhaba.
Sayının faktöriyelini bulan kodu paylaşmıştım.
Bunu bir de fonksiyon oluşturarak yapmak istedim.
İyi çalışmalar.
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int faktoriyel(int numara);
void main ()
{
int sayi ;
printf("Please enter an integer : ");
scanf("%d",&sayi);
printf("%d ! = %d \n",sayi,faktoriyel(sayi));
getch();
}
int faktoriyel (int numara)
{
int counter,total;
for (counter=1,total=1;counter<=numara;counter++)
{
total *= counter;
}
return total;
}
Sayının faktöriyelini bulan kodu paylaşmıştım.
Bunu bir de fonksiyon oluşturarak yapmak istedim.
İyi çalışmalar.
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int faktoriyel(int numara);
void main ()
{
int sayi ;
printf("Please enter an integer : ");
scanf("%d",&sayi);
printf("%d ! = %d \n",sayi,faktoriyel(sayi));
getch();
}
int faktoriyel (int numara)
{
int counter,total;
for (counter=1,total=1;counter<=numara;counter++)
{
total *= counter;
}
return total;
}