变压器的铭牌上标有变压器的()等。
A、额定电压
B、额定电流
C、额定容量
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