明雪斋吧 关注:52贴子:2,502
  • 2回复贴,共1

091124-2

收藏回复

  • 60.191.1.*
Private Sub Command1_Click()
    Dim A(4, 4) As Integer
    Dim i As Integer
    Dim j As Integer
    
    Randomize
    
    For i = 0 To 4
        For j = 0 To 4
            A(i, j) = Int(Rnd * (90 - 40) + 40)
        Next j
    Next i
        For i = 0 To 4
            For j = 0 To 4
                Me.Text1.Text = Me.Text1.Text & A(i, j) & "  "
                
                If j = 4 Then
                    Me.Text1.Text = Me.Text1.Text & vbCrLf
                End If
            Next j
        Next i
        
        
        Dim max As Integer
        Dim maxI As Integer
        Dim maxJ As Integer
        
        max = A(0, 0)
        maxI = 0
        maxJ = 0
        
        For i = 0 To 4
            For j = 0 To 4
                If A(i, j) > max Then
                    max = A(i, j)
                    maxI = i
                    maxJ = j
                End If
            Next j
        Next i
        Me.Label1.Caption = max
        Me.Label2.Caption = maxI
        Me.Label3.Caption = maxJ
 End Sub



1楼2009-11-24 11:20回复
    • 60.191.1.*
    Private Sub Command1_Click()
        
        Dim A(4) As Integer
        Dim i As Integer
        Dim sum As Integer
        sum = 0
        
        A(0) = 1
        A(1) = 2
        A(2) = 3
        A(3) = 4
        A(4) = 5
        
        For i = 0 To 4
            sum = sum + A(i)
        Next i
        
        Print sum
    End Sub


    2楼2009-11-24 11:32
    回复
      • 60.191.1.*
      Private Sub Option1_Click(Index As Integer)
          Select Case Index
          Case 0
            Text1.FontSize = 10
          Case 1
            Text1.FontSize = 14
          Case 2
            Text1.FontSize = 18
          Case 3
            Text1.FontSize = 24
          Case 4
            Text1.FontSize = 32
          End Select
      End Sub


      3楼2009-11-24 11:40
      回复