以下程序的输出结果是______。Long fun(int n){ long s;If(n==1||n==2) s=2;Else s=n-fun(n-1);Return s;}Main(){ printf("%ld\n",fun(3));}
A.1
B.2
C.3
D.4
正确答案是A