girilen sayıdan küçük asalları fonksiyon kullanarak ekrana yazan c kodu programı
Mayıs 04, 2018
basit c dili örnekleri
,
C
,
c dili
,
C dili programı
,
C programlama
,
c programlama örnekleri
,
girilen sayıdan küçük asalları fonksiyon kullanarak ekrana yazan c kodu programı
Edit
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void fonk(int x){
int d=0;
for(int k=2; k<x; k++){
if(x% k==0 ) d++;
}
if(d==0) printf("%d\n", x);
if(x-1>1) return fonk(--x);
}
int main(int argc, char** argv) {
int x;
scanf("%d", &x);
fonk(x);
return 0;
}
0 yorum :
Yorum Gönder