sábado, 21 de novembro de 2009
Ficha 13-1
Private Sub cmd1_Click()
Dim n As Integer, soma As Integer, negativos As Integer
Dim cont As Integer
cont = 0
soma = 0
negativos = 0
MsgBox "Introduza 10 números á sua escolha", vbOKCancel + vbInformation, "Programa"
For n = 1 To 10
cont = cont + 1
numero = InputBox("Introduza o " & cont & "º número inteiro", "Introduzir números")
If numero = 0 Then
End
End If
Picture1.Print cont & "º número ->" & numero
If numero > 0 Then
soma = soma + numero
ElseIf numero < 0 Then
negativos = negativos + 1
End If
Next n
Picture1.Print "Soma dos números positivos -> " & soma
Picture1.Print "Número de negativos -> " & negativos
End Sub
Private Sub Limpar_Click()
Picture1.Cls
End Sub
Private Sub Sair_Click()
End
End Sub
Subscrever:
Enviar feedback (Atom)
Sem comentários:
Enviar um comentário