用导轨式量规测量两个不同孔径的孔时,孔外边缘尺寸是400mm,内边缘尺寸是380mm,那么两孔的尺寸应该是390mm。
参考答案:对
______越高,屏幕上图像的闪烁感越小,图像越稳定,视觉效果也越好。当前PC中该指标大多采用______Hz。
A.分辨率 B.显存容量 C.刷新频率 D.色深
下面程序的输出结果是( )。 # include <iostream.h> class example { int a; public: example (intb) {a=b++;} void print ( ){a=a+1; cout << a <<" ";} void print ( ) const {cout << a <<" ";} }; void main ( ) { example x (3); const example y (2); x. print ( ); y.print ( ); }
A. (operator++(x) ).operator/(y)
B. (operator++(0) ).operator/(y)
C. operator/( (operator++(x,0) ),y)
D. operator/( (operator++(0) ),y)