填空题
数据结构分为逻辑结构和存储结构,循环队列属于______结构。
【参考答案】
存储或物理或存储结构或物理结构
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
在下面程序的横线处填上适当的内容,使程序执行后的输出结果为ABCD。 #include <iostream.h> using namespace std; class A public: A() cout<<’A’; ; class B:______ public: B() cout<<’B’; ; class C:______ public: C( cout<<’C’; ; class D:public B, public C public: D()cout<<’D’; ; void main()D obj;
点击查看答案&解析
填空题
在下面程序的横线处填上适当的内容,使程序执行后的输出结果为1 2005。 #include <iostream.h> using namespace std: class Date public: Date (int m=1,int y=0):month(m .year(y void Print() cout<<month<< <<year<<end1; ______operator+(const Date& d1,const Date&d2; private: int month year; ; ______operaror+(const Date&d1,const Date& d2) int year, month; year=d1.year+d2.year; month=d1.month+d2.month; year+=(month-1) 12; month=(month-1)%12+l; return Datemonth, year: void main() Date d1(3,2004),d2,d3(10); d2=d3+d1; d2.Print();
点击查看答案&解析
相关试题
与成员访问表达式p->name等价的表达式是...
有如下程序: #include <iostream> u...
请将下列类定义补充完整 class Basepubli...
若有如下程序段: #include <iostream...