问题 填空题 有以下程序 main( ) { int t=1,i=5; for(;i>=0;i--) t*=i; printf(“%d\n”,t);} 执行后输出结果是 【8】 。 答案 参考答案:8、0解析:本题中t=tXi=5X4X3X2X1X0=0。