32 lines
635 B
C
32 lines
635 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
int64_t feb(int64_t* cache, int32_t count)
|
|
{
|
|
if ((count == 1) + (count == 0)) {
|
|
return 1;
|
|
};
|
|
if (cache[count] == 0) {
|
|
return cache[count];
|
|
};
|
|
cache[count] = feb(cache, --count) + feb(cache, --count);
|
|
return cache[count];
|
|
};
|
|
|
|
int main()
|
|
{
|
|
int32_t count;
|
|
printf("嘿!给我个数字,别太大!");
|
|
scanf("%d", &count);
|
|
printf("将要输出第 %d 个feb\n", count);
|
|
int64_t* cache;
|
|
cache = calloc(count, sizeof(int64_t));
|
|
|
|
int64_t result = feb(cache, count);
|
|
|
|
printf("%d", result);
|
|
|
|
return 0;
|
|
} |