填空题

在结构化设计方法中,数据流图表达了问题中的数据流与加工间的关系,并且每一个______实际上对应一个处理模块。

【参考答案】

加工
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序: #include <iostream> using namespace std; class Test public: Test() n+=2; ~Test() n-=3; static int getNum() return n; private: static int n; ; int Test::n=1; int main() Test* p=new Test; delete p; cout<< n= <<Test::getNum()<<endl; return 0; 执行该程序的输出结果是( )。
A.n=0
B.n=1
C.n=2
D.n=3
单项选择题
有如下程序: #include <iostream.h> using namespace std; class Stack public: Stack(unsigned n=10):size(n)rep_=new int [size]; top=0; Stack(Stack&s): size (s.size) rep_=new int[size]; for(int i=0;i<size;i++) rep_[i]=s.rep_[i]; top=s.top; ~Stack()delete[]rep_; void push(int
A.rep_[top]=a; top++;
int
相关试题
  • 请将下列栈类Stack补充完整。 class Stac...
  • 若要访问指针变量p所指向的数据,应使用表...
  • 已知类sample是一个抽象类,其成员函数disp...
  • 请将下列程序补充完整,使得输出结果为bbaa...
  • 在面向对象的程序设计中,将数据和处理数据...