int f(int n)
{
	if(n>1) return f(n-1)+f(n-2);
	return n
}

猜猜这个函数的功能^_^

2019/5/25 16:54
206814