蒸汽锅炉电炉出力用()来表示。
A、公斤/时
B、吨/时
C、千克/时
D、千卡/时
参考答案:B
— Can you see _________ in the tree?
—No, I can see _________ . [ ]
A. something; nothing
B. anything; nothing
C. nothing; anything
D. anything; something
有如下程序: #include <iostream> using namespace std; class Con char ID; public: Con( ):ID(’A’)cout<<1; Con(char ID) :ID(ID) eout<<2; Con(Con&C) :ID(C.getID( ))cout<<3; char getID( )constreturn ID; ; void show(Con e)cout<<e.getID( ); int main( ) Con cl; show(c1); Con c2(’B’); show(c2); return 0; 程序的输出结果是______。