题号:8188 ' 下面过程max()用于求3个数中最大值,利用这个过程求5个数中最大值。 Private Sub Form_Click() Print "5 个数 34 、 124 、 68 、 73 、 352 的最大值是 :" max1=max(34, 124, 68) '**********FILL********** max1 =_____ Print max1 End Sub Public Function max(ByVal a%, ByVal b%, ByVal c%) ' **********FILL********** If _____ Then m=a Else m=b End If '**********FILL********** If _____ Then max = m Else max = c End If End Function