填空题
以下程序运行时输出到屏幕的结果是
1
【11】
2
。 #include int f(int x) { if(x==0||x==1)return 3; return x*x-f(x-2); } void main
3
{printf("%d/n",f(3));}
1、
【正确答案】
1、6
【答案解析】
提交答案
关闭