Defición - Wikipedia:
In number theory, Mills' constant is defined as the smallest positive real number A such that the floor of the double exponential function is a prime number, for all positive integers n.
¿Cómo hago para que no desborde el tipo, cómo debo definirla?
Código
#include <stdio.h> #include <math.h> int main (void){ int n; int exponent; double mills=1.30637788386308069046861449260260571291678458515671364436805375996643405376682659; for (n=1; n<10; n++){ } return 0;}
A lo último me tira:
Código:
1.#INF00
1.#INF00
Usé la funcion floor pero el tema es que redondea mal y me tira números que no son primos.
Saludos!