éxito Accedí este código:coma flotante excepción
#include <stdio.h>
#include <math.h>
int q;
int main()
{
srand(time(NULL));
int n=3;
q=ceil(sqrt(n));
printf("%d\n %d\n", n,q);
if(n == 2)
printf("%d\n is prime", n);
else if(n % 2 == 0.0 || n < 2)
printf("%d\n is not prime", n);
else
{
int x;
for(x = 0; x < q; x++){
if(n % x == 0)
{
printf("%d\n is not prime", n);
return;
}
else
printf("%d\n is prime", n);
}
}
}
Pero cuando ejecuto mi código me sale el siguiente error:
Floating point exception
¿Qué significa este error y cómo puedo solucionarlo?
Debe sangrar todo su código para que no tenga un formato tan raro. – hb2pencil
http://stackoverflow.com/questions/4122172/c-programming-floating-point-exception – TGar