Browse Source

now signed and xx th fibonacci´number

master
Alex Resnik 4 years ago
parent
commit
48dac3fb2d
1 changed files with 6 additions and 4 deletions
  1. 6
    4
      prim.c

+ 6
- 4
prim.c View File

@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdbool.h>
#include <limits.h>
#define typ unsigned long long
#define typ long long int


bool is_it_a_prim(typ* x){
@@ -16,14 +16,16 @@ return true;


int main(void){
typ int fn = 0, fn_1 = 1, fn_2 = 0;
while(fn < ULLONG_MAX)
typ fn = 0, fn_1 = 1, fn_2 = 0;
int i = 2;
while(fn < LLONG_MAX)
{
fn = fn_1 + fn_2;
if(is_it_a_prim(&fn))
printf("%llu\n",fn);
printf("%d\t%llu\n",i ,fn);
fn_2 = fn_1;
fn_1 = fn;
i++;
}
return 0;
}

Loading…
Cancel
Save