如果30度的气门面烧坏时,可将它磨成45度,装回原来发动机使用。
参考答案:错
水的衰减系数是()
A.0
B.1
C.2
D.10
E.100
将下面程序补充完整。 #include <iostream> using namespace std; class Base{ public: 【14】 fun(){return 0;} //声明虚函数 }; class Derived:public Base{ public: x,y; void SetVal(int a,int b){} int fun(){return x+y;} }; void 【15】 SetVal(int a,int b){x=a;y=b;} //类Derived成员函数 void main(){ Derived d; cout<<d.fun()<<endl; }