填空题
在结构化分析方法中,用于描述系统中所用到的全部数据和文件的文档称为
【3】
。
【参考答案】
数据字典
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
问题处理方案的正确而完整的描述称为 【1】 。
点击查看答案
单项选择题
有以下程序:#include <iostream>using namespace std;class sample private: int n;public: sample() sample(int m) n=m; sample add(sample s1,sample s2) this->n=s1. n+s2.n; return (*this); void disp() cout<< n= <<n<<end1; ;int main() sample s1(10),s2(5),s3; s3.add(s1,s2); s3.disp(); return 0,
A.n=10
B.n=5
C.n=20
D.n=15
点击查看答案
相关试题
下列程序的输出结果是 【15】 。#incl...
下面程序的输出结果是 【14】 。#defi...
如果表达式x=y*z中的“*”是作为成员函...
如果不使用多态机制,那么通过基类的指针虽...
若以非成员函数形式,为类Bounce重载“!”...