A.
B.
C.
D.
答案:D
用锅炒菜时,无论火多大,只要锅中有水,菜就不容易炒焦,其原因是( )
A.水吸收了全部热量
B.水把热挡住了,菜没吸热
C.水沸腾时温度不变,这时温度低于菜变焦的温度
D.菜的温度低于水的温度
有如下程序:#include <iostream>using namespace std;class Obj static int i;public: Obj()i++; -Obj()i--; static int getVal()return i; ;int Obj::i=0;void f()Obj ob2; cout<<ob2.getVal(); hat main() Obj ob1; f(); Obj *ob3=new Obj; cout<<ob3->getVal(); delete ob3; cout<<Obj:: getVal(); return (); 程序的输出结果是( )。
A.232
B.231
C.222
D.221