在项目招标的中标通知书发出后,招标人和中标人应按照( )订立书面合同。
A.招标公告
B.招标文件
C.投标文件
D.评标价格
E.最后谈判达成的降价协议
参考答案:B,C
下列除哪项外,均是甘味药的作用()
A.补益
B.和中
C.缓急
D.固涩
E.调和药性
下列程序的输出结果是( )。 #include<iostream.h> class Myclass { public:Myclass(int i=0,intj=0) { x=i; y=j; } void show( ) { cout < < "x=" < < x < < " " < "y=" < < y < < end1;} void show( )const { cout < < "x=" < < " " < < "y=’’ < < y < < end1;} privated: int x; int y; }; void main( ) { Myclass my1(3,4); const my2(7,8); my1.show( );my2.show( );}
A.line 4
B.line 6
C.line 7
D.line 8