Developpement/23DEV1.1/TPS1/TP01/07-Boucles/BouclesBis/Primaire.c

20 lines
398 B
C

#include <stdio.h>
#include <stdlib.h>
int main(void) {int t = 1;
int t = 1;
int x;
int a;
printf("entree un nombre : ");
scanf("%d", &x);
for(a = 2 ; a < x ; a++){
t = t && (x % a != 0);
printf("%d\n",t);
}
if(t == 1){
printf("il est un nombre premier.\n");
}
else{
printf("il n est pas un nombre premier.\n");
}
return EXIT_SUCCESS;
}