下列程序的运行结果是:fun(int x){ int p;if(x==0||x==1) return(3);p=x-fun(x-2); return p;} main(){ printf(“%d”,fun(9));} A、7B、2C、0D、3 发布时间:2025-06-22 13:08:32