Skip to content

Instantly share code, notes, and snippets.

@merbussa
Created April 7, 2014 20:02
Show Gist options
  • Save merbussa/10041695 to your computer and use it in GitHub Desktop.
Save merbussa/10041695 to your computer and use it in GitHub Desktop.
/*copyright ftastemur */
#include <stdio.h>
int main(void)
{
int sayi,flag=0, i;
printf("Bir sayi giriniz: ");
scanf("%d", &sayi);
for( i=2;i<=sayi/2;i++) {
if(sayi%i==0) {
flag=1;
break;
}
}
if(flag==0)
printf("Sayi Asaldir.\n");
else
printf("Sayi Asal Degildir.\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment