房屋出租时,对出租人而言,其出租凭证为()
A.身份证
B.工商注册登记证明
C.房地产权证
D.土地使用权证
参考答案:C
混凝土夏季施工时,必须加的外加剂是( )。
A.减水剂B.缓凝剂C.早强剂D.引气剂
请将下列栈类Stack补充完整。 class Stack{ private: intpList[100]//int数组,用于存放栈的元素 inttop;//栈顶元素(数组下标) public: Stack();top(0){} void Push(const int &item);//新元素item压入栈 int Pop(void); //将栈顶元素弹出栈 }; void Stack::Push(const int&item){ if(top==99) //如果栈满,程序终止 exit(1) top++;//栈顶指针增1 ______; } int Stack::Pop(){ if(top(0) 如果栈空,程序终止 exit(1); return pList[top--]; }