Ist bestimmt ein total falscher Code aber ich hab mich wirklich bemüht was ist denn hieran falsch?
Imports System
Imports.IO
Dim arrText() As String
Dim j As Integer = 0
Dim i As Integer = 0
Dim vHund() As String
System.Console.WriteLine("Text eingeben:")
arrText() = System.Console.ReadLine()
Function bubblesort(arrText)
For j = ubound(arrText) -1 To lbound(arrText) Sep -1
For i = lbound(arrText) To j
If arrText(i) > arrText(i+1) Then
vHund = arrText(i)
arrText(i) = arrText(i+1)
arrText(i+1) = vHund
End If
Next i
Next j
End Function
System.Console.WriteLine(vHund)
System.Console.Read()
End Module
Betreff |
Von |
Datum |
|
|
Re: Array sortieren
Hallo Guest,<br><br>hast Du evtl. schon mal Versucht MS für dich die Arbeit machen zu lassen es gibt in der Klasse<br>System.Array eine Sort... |
|
|
|
|
|
Ansgar
Sommer
|
02.11.2005 17:25 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!