填空题

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

【参考答案】

0
<上一题 目录 下一题>
热门 试题

填空题
下列程序的功能:对输入的一行字符中的数字字符的字面值累加,输出此累加和,请填空。 #include<stdio.h> #include<ctype.h> main() char c; int a,s=0; while(______) if(isdigit(c)) a=c-’0’;s+=a; printf( s=%d ,s);
填空题
以下程序运行后的输出结果是 。 #include<stdio.h> main() int a=200,b=010; printf( %d%d n ,a,b);
相关试题
  • 在E-R图中,图形包括矩形框、菱形框、椭圆...
  • 以下程序的功能是:借助指针变量找出数组元...
  • 在宏定义#define P13.14159中,...
  • 下列程序段的运行结果是______。 in...
  • 以下程序的功能是:借助指针变量找出数组元...