Advertisement
Guest User

Untitled

a guest
Oct 4th, 2013
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 2.19 KB | None | 0 0
  1. Public Class Form1
  2.  
  3.     Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
  4.         ListBox1.Items.Clear()
  5.         If TextBox1.BackColor = Color.Red Then
  6.             ListBox1.Items.Add("Keine gültige Zahl")
  7.             Exit Sub
  8.         End If
  9.         Dim time As Double
  10.         Try
  11.             time = threeplusn(Convert.ToDouble(TextBox1.Text), 0)
  12.         Catch Exc As System.OverflowException
  13.             ListBox1.Items.Add("=======================")
  14.             ListBox1.Items.Add(TextBox1.Text & " ist wahrscheinlich keine wunderbare Zahl, wir wissen es nicht genau")
  15.             Exit Sub
  16.         End Try
  17.  
  18.         If Not time = -1 Then
  19.             ListBox1.Items.Add("=======================")
  20.             ListBox1.Items.Add(TextBox1.Text & " ist eine wunderbare Zahl | berechnet nach " & time & " Schritten")
  21.         Else
  22.             ListBox1.Items.Add("=======================")
  23.             ListBox1.Items.Add(TextBox1.Text & " ist wahrscheinlich keine wunderbare Zahl, wir wissen es nicht genau")
  24.         End If
  25.     End Sub
  26.  
  27.     Public Function threeplusn(n As Double, time As Integer)
  28.         If time > 1000 Then Return -1
  29.         Dim nold As Double = n
  30.         If Not n Mod 2 = 1 Then
  31.             n = n / 2
  32.             ListBox1.Items.Add("n = " & nold.ToString & " g -> " & n)
  33.         Else
  34.             n = 3 * n + 1
  35.             ListBox1.Items.Add("n = " & nold.ToString & " u -> " & n)
  36.         End If
  37.         If n = 1 Then Return time Else Return threeplusn(n, time + 1)
  38.     End Function
  39.  
  40.     Private Sub TextBox1_TextChanged(sender As System.Object, e As System.EventArgs) Handles TextBox1.TextChanged
  41.         For i = 0 To TextBox1.Text.Length - 1
  42.             Select Case (TextBox1.Text(i))
  43.                 Case "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" : TextBox1.BackColor = Color.Green
  44.                 Case Else
  45.                     TextBox1.BackColor = Color.Red
  46.                     Exit For
  47.             End Select
  48.         Next
  49.         If TextBox1.Text.Length < 1 Then TextBox1.BackColor = Color.Red
  50.         If TextBox1.Text.Length = 1 And TextBox1.Text(0) = "0" Then TextBox1.BackColor = Color.Red
  51.  
  52.     End Sub
  53. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement