填空题

数据库管理系统常见的数据模型有层次模型、网状模型和 【3】 三种。

【参考答案】

关系模型
<上一题 目录 下一题>
热门 试题

填空题
算法复杂度主要包括时间复杂度和 【2】 复杂度。
单项选择题
若有以下程序: #include <iostream> using namespace std; class A public: A() A(int i) x1=i; void dispa0 cout<< x1= <<x1<< , ; private: int x1; ; class B: public A public: B() B(int i):A(i+10) x2=i; void dispb() dispa(); cout<< x2= <<x2<<endl; private: int x2; ; int main() B b(2); b.dispb(); return 0; 程序运行后的输出结果是( )。
A.x1=10,x2=2
B.x1=12,x2=10
C.x1=12,x2=2
D.x1=2,x2=2
相关试题
  • 阅读下面程序: #include<iostream.h>...
  • 下列程序运行后的输出结果是 【15】 。...
  • 在MyClass类的定义中,对赋值运算符:进行...
  • 假设血int a=1,b=2;,则表达式(+...
  • 下列程序的输出结果为2,请将程序补充完整...