填空题
以下程序的输出结果是______。
#include<stdio.h>
fun()
static int a=0;
a+=3;printf("%d",a);
main()
int cc;
for(cc=1;cc<5;cc++)fun();
printf("\n");
【参考答案】
3 6 9 12
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
以下程序运行后的输出结果是 。 #include <stdio, h> main( ) int a=3,b=4,c=5,t=99; if(b<a && a<c) t=a;a=c;c=t; if(a<e && b<c) t=b;b=a;a=t; printf( %d %d %d n ,a,b,e);
点击查看答案&解析
填空题
若int x=1,y=2;则计算表达式y+=y-=x*=y后的y值是______。
点击查看答案&解析
相关试题
下面程序运行后的输出结果是______。...
下列程序用来判断指定文件是否能正常打开,...
以下程序运行后的输出结果是______。...
设有定义: struct person int ID; c...