填空题
按照软件测试的一般步骤,______测试应在集成测试之前进行。
【参考答案】
单元
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
若输入I have a test.#,则以下程序的运行结果为______。#include<stdio.h>main() FILE*fp; char str[100],filename[10]; int i=0; if ((fp=fopen( test , w ))==NULL) printf( can not open the file! n ); exit(0); getchar(); gets(str); while(str[i]!=’#’) if (str[i]>=’a’ && str[i]<=’z’) str[i]=str[i]-32; fputc(str[i],fp); i++; fclose(fp); fp=fopen( test , r ); fgets(str,strlen(str)+1,fp); printf( %s n ,str); fclose(fp);
点击查看答案
填空题
以下程序运行后的输出结果是______。 main() int x=1,y=0,a=0,b=0; switch(x) case 1: switch(y) case 0: a++; break; case 1: b++; break; case 2: a++; b++; break; printf( %d %d n , a, b);
点击查看答案&解析
相关试题
在一个容量为15的循环队列中,若头指针fr...
有一个已排好序的数组,今输入一个数,要求...
设有如下宏定义 #define MYSWAP(z,x,...