编写一个函数判定给定的一个数是否属于Fibonacci数列中的一项,函数的返回值为0(不属于)或者1(属于) #include<stdio.h> int belong(int n){ int a=1,b=1,c=2; while