VB初心者です。
昇順でループ処理を下記のコードでやりたいのですがどこをどう直せばいいですか?
よろしくお願いします。
Dim x AS Integer
x = 1
Dim y AS Integer
y = 2
Dim z AS Integer
z = 3
Dim a AS Integer
Dim b AS Integer
Dim c AS Integer
If x<y then
a = y
b = x
else
a = x
b = y
If a<z then
Listbox.Item.Add(z)
c = a
else
Listbox.Item.Add(a)
c = z
If b>c Then
Listbox.Item.Add(b)
Listbox.Item.Add(c)
else
Listbox.Item.Add(c)
Listbox.Item.Add(b)