填空题

软件的需求分析阶段的工作,可以概括为四个方面: 【1】 、需求分析、编写需求规格说明书和需求评审。

【参考答案】

需求获取
<上一题 目录 下一题>
热门 试题

单项选择题
以下程序的功能是:建立一个带有头结点的单向链表,并将存储在数组中的字符依次转存到链表的各个结点中,请为下划线处选择正确的选项。 #include < stdlib. h > stuct node char data; struct node * next; ; ( ) CreatList(char * s) struet node * h, * p, * q; h = (struet node * ) ma]loc(sizeof(struct node) ); p=q=h; while( * s! =’ 0’) p = ( struct node * ) ma]loc ( sizeof( struct node) ); p- >data= *s; q- >next=p; q=p; s++; p- > next =’ 0’; return h main( ) char str[ ] = link list ; struet node * head; head = CreatList (str);
A.char *
B.struet node
C.struct node *
D.char
填空题
数据字典是各类数据描述的集合,它通常包括五个部分,即数据项、数据结构、数据流、 【3】 和处理过程。
相关试题
  • 以下程序运行后的输出结果是 【20】 。...
  • 以下程序通过函数SunFun()调用F(x),x...
  • 以下程序段的输出结果是 【15】 。 in...
  • 以下程序从终端读入数据到数组中,统计其中...
  • 以下程序运行后的输出结果是 【14】 。...