有以下程序: #include <stdio.h> main() { int t=1,i=5; for(;i>=0;i--) t*=i; printf("%d\n",t); } 执行后的输出结果是【

admin2013-06-11  20

问题 有以下程序:
   #include  <stdio.h>
   main()
   {  int t=1,i=5;
      for(;i>=0;i--) t*=i;
      printf("%d\n",t);
   }
   执行后的输出结果是【  】。

选项

答案0

解析 本题是计算5*4*3*2*1*0的值,结果为0。
转载请注明原文地址:https://kaotiyun.com/show/j5Jp777K
0

最新回复(0)