橡胶密封圈、接头体、法兰体组装后,橡胶密封圈须高出法兰平面1mm以上,但不大于3mm。
参考答案:错
家庭漂白术使用的漂白剂是()
A.30%过氧化氢
B.10%~15%过氧化脲
C.15%过硼酸钠
D.10%~15%过氧化氢
E.30%过氧化脲
下面程序的输出结果是 【8】 。 #include <iostream> using namespace std; int x; void funA(int&,int); void funB(int,int&); int main() { int first; int second=5; x=6; funA(first,second); funB(first,second); cout<<first<<" "<<second<<" "<<x<<endl; return 0; } void funA(int &a,int b) {int first;first=a+b;a=2*b;b=first+4; } void funB(int u,int &v) {int second;second=x;v=second+4;x=u+v; }