单项选择题

下列叙述中,不属于数据库系统的是

A.数据库
B.数据库管理系统
C.数据库管理员
D.数据库应用系统
<上一题 目录 下一题>
热门 试题

单项选择题
关于语句 #include<iostream> using namespace std; void main( ) { cout < < 100.8989663 < < '; cout < < fixed < < 100.8989663 < <'; cout < < scientific < < 100.8989663 < <'; 的输出结果为
A.100.899 100.898966 1.008990e+002
B.100.8989663 100.898966 1.008990e+002
C.100.899 100.898966 1.008989e+002
D.100.899 100.8989663 1.008989e+002

单项选择题
以下程序的输出结果是 #include<iostream.h> int f( ) static int i=0; int s=1 s+ =i; i++; return s; void main( ) int i,a=0; for(i=0 ;i<5;i++)a+=f( ); cout < < a;
A.20
B.24
C.25
D.15
相关试题
  • C++在重载运算符中,如用成员函数重载一...
  • 已知: double A (double A) return...
  • 请在mian函数中填空使下面程序的输出结果为...
  • 如果一个类中定义了成员对象,则该类的对象...
  • 以下函数用来求出数组的最大元素在数组中的...