#include <stdio.h>long fib(int x){switch (x){case 0:return 0;case 1:case2: return 1;}return (fib(x - 1) + fib(x - 2));}int main(){int x = 6;printf("%d\n", fib(x));return 1;}
f(0)=0f(2)=1f(1)=1f(x)=f(x-1)+f(x+2)求f(6)