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