Compare commits

..

No commits in common. "5192fdec49613cb0e33ebccff66711b90c159a4e" and "240fdc1e1fe80e0ce66390299b0f153290aa6b33" have entirely different histories.

17
prim.c
View File

@ -3,7 +3,8 @@
#include <limits.h>
#define typ long long int
bool foo(typ* x){
bool is_it_a_prim(typ* x){
int k = 2;
while(k < *x){
if(*x % k == 0)
@ -13,18 +14,18 @@ k++;
return true;
}
int main(void){
typ fn = 0, fn_1 = 1, fn_2 = 0;
printf("%llu",ULONG_MAX);
while(fn < ULONG_MAX)
int i = 2;
while(fn < LLONG_MAX)
{
fn = (typ)fn_1 + (typ)fn_2;
if(foo(&fn))
printf("%llu\n",fn);
fn = fn_1 + fn_2;
if(is_it_a_prim(&fn))
printf("%d\t%llu\n",i ,fn);
fn_2 = fn_1;
fn_1 = fn;
i++;
}
return 0;
}