Kullanıcıdan girilen sayının faktoriyelini alan C programı
#include <stdio.h>#include <conio.h>
void main() {
// asal sayı hesaplama programı
int sayi;
int carpim = 1;
printf("Lürfen bir sayı giriniz");
scanf_s("%d", &sayi);
for (int i = 1; i <= sayi; i++){
carpim = carpim*i;
}
printf("%d sayisinin faktoriyeli %d ", sayi, carpim);
_getch();
}
0 yorum: