φ30-0.02+0.02毫米的孔和φ300+0.04毫米的轴配合,问它的最大过盈和最大间隙是多少?

φ30-0.02+0.02毫米的孔和φ300+0.04毫米的轴配合,问它的最大过盈和最大间隙是多少?


相关考题:

在窗体上画一个命令按钮,然后编写如下程序: Sub S1(ByVal x As Integer,ByVal y As Integer) Dim t As Integer t=x x=y y=t End Sub Private Sub Command1_Click() Dim a As Integer,b As Integer a=10 b=30 S1 a,b Print"a=";a;"b=";b End Sub 程序运行后,单击命令按钮,输出结果是 ______。A.a=30 b=10B.a=30 b=30C.a=10 b=30D.a=10 b=10

有如下SUB过程:Sub s(x As Single,y As Single)t=xx=t / yy=t Mod yEnd Sub在窗体上添加一个命令按钮,然后编写如下事件过程:Private Sub Form_Click()Dim a As SingleDim b As Singlea=5b=4s a,bPrint a,bEnd Sub则程序运行后,单击命令按钮,输出的结果为【 】 。

下列过程说明合法的是( ) A、Sub S1(ByVal n!())B、Sub S1(n!) as IntegerC、 Function S1%(S1%)D、 Function S1(ByVal n!)

阅读如下程序, a = 1: b = 2: plus S, a, b: Print S:不能使其输出结果为3的plus过程为( )。 A、Sub plus(sum, a , b ): sum = a + b: End SubB、Sub plus(ByVal sum , a , b ): sum = a + b: End SubC、Sub plus(sum , ByVal a, ByVal b ): sum = a + b: End SubD、Sub plus(sum , ByRef a , ByRef b ): sum = a + b: End Sub

强酸中毒血气分析正确为( ) A.pH上升B.PaCO/sub2/supsubno上升C.PaO/sub2/supsubno上升D.HCO/sub3/supsubno/sup-/supsubno降低E.HCO/sub3/supsubno/sup-/supsubno升高

强酸中毒血气分析正确为()。 A.pH上升B.PaCO/sub2/supsubno上升C.Pa0/sub2/supsubno上升D.HCO/sub3/supsubno/sup-/supsubno降低E.HCO/sub3/supsubno/sup-/supsubno升高

在窗体中添加一个名称为Command1的命令按钮,然后编写如下程序: Public x As Integer Private Sub Command1_Click() x=10 Call s1 Call s2 MSgBox x End Sub Private Sub s1() x=x+20 End Sub Private Sub s2() Dim x As Integer x=X+20 End Sub 窗体打开运行后,单击命令按钮,则消息框的输出结果为______。A.10B.30C.40D.50

把‘今天天气不错!’变为‘今天天气不错’是()。A.B.C.D.E. 把‘今天天气不错!’变为‘今天天气不错’是( )。A.<sup></sup>B.<s></s>C.<tt></tt>D.<sub></sub>E.<i></i>

在窗体上画一个命令按钮,然后编写如下程序:Sub S1(ByVal x As Integer, By Val y As Integer) Dim t As Integer t=x x=y y=tEnd SubPrivate Sub Command1_ Click() Dim a As Integer, b As Integer a=10 b=30 S1 a,b Print "a=";a="b=";bEnd Sub 程序运行后,单击命令按钮,输出结果是______。A.a=30 b=10B.a=30 b=30C.a=10 b=30D.a=10 b=10

有如下程序 Private Sub Command1_Chck( ) s=0 DO s=(s+1) *(s+2) N=N+1 Loop Until s>=10 Prim N;s End Sub 运行后的输出结果是A.0 1B.30 30C.4 30D.2 12

在窗体中添加一个名称为Commandl的命令按钮,然后编写如下程序:Public X As Integer Private Sub Commandl Click( )x=10 Call slCall s2MsgBox x End Sub Private Sub sl( )x=x+20 End Sub Private Sub s2( )Dim x As Integer x=x+20End Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为( )。A.10B.30C.40D.50

编写如下事件过程: Private sub sub1 (ByVal x1 As String, y1 As String) Dim xt As String Dim i As Integer i = Len(x1) Do While i>= 1 xt = xt + Mid(x1, i, 1) i=i-1 Loop y1 = xt End Sub Private Sub Form. Click() Dim s1 As String, s2 As String s1= "teacher" sub1 s1, s2 Print s2 End Sub 程序运行后,单击窗体,则窗体上显示的内容是A.rehcaetB.tahreeeC.themeeD.eerthea

写出程序运行的结果Public class BasePublic virtual string Hello() {return “Base”;}Public class Sub:BasePublic override string Hello() {return “Sub”;}1. Base b = new Base(); b.Hello;2. Sub s = new Sub(); s.Hello;3. Base b = new Sub (); b.Hello;4. Sub s = new Base(); s.Hello;

下面程序的输出结果是。 Private Sub Commandl_Click ch$=“ABCDEF” proc ch:Print ch End Sub Private Sub proc(ch As Stnng) s=“” For k=Len(ch) TO 1 Step -1 s=sMid(ch,k,1) Next k ch=s End Sub A.ABCDEF B.FEDCBA C.A D.F

在窗体中添加一个名称为Commandl的命令按钮,然后编写如下程序: Public x As Integer Private Sub Commandl_click() x=10 Call s 1 Call s 2 MsgBOx x End Sub Pfivate Sub s1() x=x+20 End Sub Private SubA.10B.30C.40D.50

在窗体中添加一个名称为Command1的命令按钮,然后编写如下程序: Public x As Integer Private Sub Command1_Click() x=10 Call s1 Call s2 MsgBox x End Sub Private Sub sl() x=x+20 End Sub Private Sub s2() Dim x As Integer x=x+20 End Sub 窗体打开运行后,单击命令按钮,则消息框的输出结果为( )。A.10B.30C.40D.50

下列程序运行后的输出结果是______。Private Sub f(k,s)s=1For j=1 To ks=s*jNextEnd SubPrivate Sub Command1_Click()Sum=0For i=1 To 3Call f(i,s)Sum=Sum+sNextPrint SumEnd Sub

( 35 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下程序:Public x As IntegerPrivate Sub Command1_Click( )x = 10Call s1Call s2MsgBox xEnd SubPrivate Sub s1( )x = x + 20End SubPrivate Sub s2( )Dim x As Integerx = x + 20End Sub窗体打开运行后,单击命令按钮,则消息框的输出结果为A ) 10B ) 30C ) 40D ) 50

下列物质中哪个不是第二信使A.IP3B.Ca2+C.cAMPSXB 下列物质中哪个不是第二信使A.IP<sub>3</sub>B.Ca<sup>2+</sup>C.cAMPD.GMPE.DAG(二酰基甘油)

一平面简谐波的波动方程为y=0.02cosπ(50t+4x)(SI),此波的振幅和周期分别为(  )。 A. 0.02cm,0.04s B. 0.02m,0.02s C. -0.02m,0.02s D. 0.02m,25s

男性,28岁。心慌、怕热、多汗、消瘦、易饿4个月,甲状腺弥漫性Ⅰ度肿大,血TSH降低,T<sub>3</sub>和T<sub>4</sub>增高,诊为甲亢。他巴唑每天30mg,20天后血白细胞2.2*10<sup>9</sup>/L,中性粒细胞1.0*10<sup>9</sup>/L。甲亢的下一步治疗宜选A:他巴唑剂量减半再用B:停药或他巴唑与升白细胞药合用C:改用丙硫氧嘧啶D:核素<sub>131</sub>I治疗E:白细胞恢复正常后立即手术治疗

下列表示下标的是()A、sup./sup B、sub/sub C、top/top

s=”this is the mainstring”,sub=”string”,strindex(s,sub)是()

下面哪个不是ZXONE 8000子架?()A、传输子架transmission sub-rackB、CX20子架/nCX20 sub-rackC、CX子架/nCX sub-rackD、CX30子架/nCX30 sub-rack

单选题标称值为100Ω的标准电阻器,其绝对误差为-0.02Ω,则相对误差为()。A0.02Bp2×10sup-4 /sup /pCp-2×10sup-4 /sup /pDp-2×10sup-4/supΩ /p

单选题酶促反应速度(v)达到最大反应速度(Vmax)的80%时,底物浓度[S]为Ap1Ksubm/sub/pBp2Ksubm/sub/pCp3Ksubm/sub/pDp4Ksubm/sub/pEp5Ksubm/sub/p

单选题下列测量结果的表示中,错误的是()。ApIsubS/sub=10.0413A,Usubrel/sub=5×10sup-5/sup,k=2 /pBpIsubS/sub=10.0413(1±5×10sup-5/sup)A,k=2 /pCpIsubS/sub=(10.0413±5×10sup-5/sup)A,k=2 /pDpIsubS/sub=10.0413A,Usub95rel/sub=5×10sup-5/sup,Vsubeff/sub=9 /p

填空题s=”this is the mainstring”,sub=”string”,strindex(s,sub)是()