My question is how do I put the numbers in descending order this is the question: VB.NET programming language to write a program to print the value of a series of numbers from 0 to 9 in descending order.
This is what I have:
Module Module1
Sub Main()
Dim num1 As Integer = 0
Do While num1 <= 9
Console.WriteLine(num1)
num1 += 1
Loop
Console.ReadLine()
End Sub
Thanks