填空题

数据库系统中实现各种数据管理功能的核心软件称为 【5】 。

【参考答案】

数据库管理系统
<上一题 目录 下一题>
热门 试题

单项选择题
若有以下程序: #include<iostream> using namespace std; class sample { private: int n; public: sample(){} sample(int m) { n=m; } void addvalue(int m) { sample s; s.n=n+m; *this=s; } void disp() { cout<< n =<<n<<end1; } }; int main() { sample s(10); s.addvalue(5); s.disp(); return 0; } 程序运行后的输出结果是
A.n=10
B.n=5
C.n=15
D.n=20
填空题
设一棵完全二叉树共有700个结点,则在该二叉树中有 【1】 个叶子结点。
相关试题
  • 下面是复数类complex的定义,其中作为友元...
  • 若有以下程序:#include<iostream>using...
  • 【13】 允许用户为类定义一种模式,使得...
  • 在下面横线上填上适当的语句,完成程序。#...
  • 虚函数必须是类的 【12】 。