分析下面程序中输出的count的值是多少
分析下面程序中输出的count的值是多少,#include<stdio.h>
#include<stdlib.h>
static int count ;
int
hermite(int n,int x);
int
main(void)
{
int n = 2,x =1;
printf("n =2,x=1,result = %d\n count = %d\n",hermite(n,x),count);
return EXIT_SUCCESS;
}
int hermite(int n,int x )
{
count ++;
if(n<=0)
{
return 1;
}
else if(n==1)
{
return 2*x ;
}else
{
return 2*x*hermite(n-1,x) -2*(n-1)*hermite(n-1,x);
}
}