填空题
数据流图的类型有______和事务型。
【参考答案】
变换型
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有如下程序: #include<iostream> Using namespace std; Class Amount int amount; public; Amount(int n=0):amount(n) Int getAmount()constreturn amount; Amount &operator+=(Amount
A.
&nb
点击查看答案&解析
问答题
有如下程序: #include<iostream> using namespace std; class TestClass int a; public: TestClass(int x)a=x; void show()cout<<a; ; class TestClass1:public TestClass int b; public: TestClass1(int i):TestClass(i+1),b(i) void show()cout<<b; ; int main() TestClass b(5),*p; TestClass1 d(1); p=&d; p->show(); return 0; 该程序运行后的打印结果是( )。
点击查看答案&解析
相关试题
己知下列程序的输出结果是42,请将横线处...
有如下程序: #include<iostream> usi...
如果使用数组名称为函数参数,形实结合时,...
请将下列类定义补充完整。 class Base(p...
在声明派生类时,如果不显式地给出继承方式...