25 lines
406 B
C
25 lines
406 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void){
|
|
int nbpr;
|
|
int compteur=0;
|
|
int i;
|
|
printf("DOnnez un entier \n");
|
|
scanf("%d", &nbpr);
|
|
for(i = 2; i <= nbpr; i= i+1){
|
|
if ((nbpr%i)==0)
|
|
compteur ++;
|
|
}
|
|
if (compteur > 1){
|
|
printf("nombre non premier \n");
|
|
}
|
|
if (compteur == 1){
|
|
printf("nombre premier \n");
|
|
}
|
|
printf("%d\n", compteur);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|
|
|