填空题

在结构化分析方法中,用于描述系统中所用到的全部数据和文件的文档称为______。

【参考答案】

数据字典
<上一题 目录 下一题>
热门 试题

填空题
如果一个工人可管理多个设备,而一个设备只被一个工人管理,则实体“工人”与实体“设备”之间存在______关系。
单项选择题
有以下程序 #include<iostream> using namespace std; class sample { private: int x; public: sample(int a) { x=a; } friend double square(sample s); }; double square(sample S) { return s.x*s.x; } int main() { sample s1(20),s2(30); cout<<square(s2)<<endl; return 0; } 执行结果是
A.20
B.30
C.900
D.400
相关试题
  • 有以下程序:#include<iostream>using ...
  • 下面程序的执行结果是______。#incl...
  • Staff类含有血型数据成员ID,两个Staff对象...
  • 下列程序的输出结果是______。#incl...
  • 下列程序的输出结果是______。#incl...