填空题

软件生命周期可分为多个阶段,一般分为定义阶段、开发阶段和维护阶段。编码和测试属于______阶段。

【参考答案】

开发
<上一题 目录 下一题>
热门 试题

单项选择题
若输入bcdefgh、m、abcdefg,以下程序的输出结果为( )。 #include<stdio.h> #include<string.h> main() int i; char string[20],str[3][20]; for(i=0;i<3;i++)gets(str[i]); if(strcmp(str[0],str[1])>0) strcpy(string,str[0]); else strcpy(string,str[1]); if(strcmp(str[2],string)>0) strcpy(string,str[2]); printf( %s ,string);
A.bcdefgh
B.m
C.abcdefg
D.bcdefgh或abcdefg
单项选择题
下面程序的运行结果是( )。 #include<stdio.h> void del(char*s) int i,j; char *a; a=s; for(i=0,j=0;a[i]!=’ 0’;i++) if(a[i]>=’0’&&a[i]<=’9’) s[j]=a[i]; j++; s[j]=’ 0’; main() char s[]= aa89gggh ; del(s); printf( n%s ,s);
A.aa
B.89
C.gggh
D.aa89gggh
相关试题
  • 以下程序的功能是将字符串s中所有小写字母...
  • 下面程序的运行结果是______。 #de...
  • 下面程序运行后的输出结果是______。...
  • 下面程序的运行结果是______。 #in...
  • 以下程序的输出结果是______。 #in...