填空题
数据的逻辑结构是从逻辑关系上描述数据,它与数据的
【2】
结构无关。
【参考答案】
存储
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下面程序的运行结果为( )。 #include<iostream> using namespace std; void swap(int &a,int &b){ int temp; temp=a; a=b; b=temp; } void main(){ int a=2,b=3; swap(a,b); cout<<a<< , <<b<<ENDL; }
A.2,3
B.3,2
C.2,2
D.3,3
点击查看答案&解析
单项选择题
下面函数的运行结果是( )。 #include <iostream> using namespace std; class A{ public: A(){} int Min(int a,int b){return a<b a:b;} int Min(int a,int b,int c){ if(a<b)return a<c a:c; else return b<c b:c; } ~A(){} }; void main(){ A a; cout<<a.Min(1,2,3)<<a.Min(2,0); }
A.10
B.12
C.30
D.32
点击查看答案&解析
相关试题
多继承情况下,派生类对基类成员的访问会出...
若类B是类A的私有派生类,类C是类B的公有派...
下面程序的运行结果为 【10】 。class...
一个类中有 【9】 个析构函数。
函数不能直接引用类中说明的非静态成员,这...