Ver Mensaje Individual
  #11 (permalink)  
Antiguo 19/01/2010, 02:57
Avatar de juaco14
juaco14
 
Fecha de Ingreso: mayo-2009
Mensajes: 185
Antigüedad: 15 años
Puntos: 1
Respuesta: Programa basico de adivinar numero

Código:
Public Class Form1
Dim n As Integer
Dim Intentos As Integer
 
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  Randomize()
  n = Int(Rnd() * 100 ) + 1
  TextBox1.Text = n
  Intentos = 0
End Sub
 
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Val(TextBox2.Text) > n Then
  MsgBox  "El numero es MEnor"
  Intentos = Intentos + 1
ElseIf Val(TextBox2.Text) < n Then
  MsgBox  " el numero es MAyor "
  Intentos = Intentos + 1
Else
if intentos < 11 and > 6 then 
  MsgBox  " gran rival"
end if
if intentos < 7 abd > 3 then
  MsgBox  " gran experto"
end if
if intentos < 4 and > 0 then
  MsgBox  " gran adivino"
end if
  End
End If
 
If Intentos > 9 Then 
  MsgBox "Demasiados intentos. Has fallado."
  End
End If
End Sub
 
End Class
No lo probe pero algo asi deberia andar.