种子生活力是指种子的发芽潜在能力和()所具有的生命力。
A.种胚
B.种子
C.果实
D.胚芽
参考答案:A
不属于板块构造学说中六大板块的是( )
A.太平洋板块
B.大西洋板块
C.印度洋板块
D.美洲板块
有如下程序: #include<iostream> using namespace std; class sample { private: int x,y; public: sample(int i,int j) {x=i;y=j; } void disp() {cout<<"disp1"<<end1; } void disp()const {cout<<"disp2"<<end1; } }; int main() { const sample a(1,2); a.disp(); return 0; } 该程序运行后的输出结果是
A.disp1
B.disp2
C.disp1 disp2
D.程序编译时出错