Visual Studio 正在尝试要求基于用户的整数输入

ehxuflar  于 2022-11-17  发布在  其他
关注(0)|答案(1)|浏览(121)

Vb.net 如何要求用户输入一个整数?这就是他们必须输入一个数字多少次,然后找到最大的数字
想不出逻辑

vcirk6k6

vcirk6k61#

Print("Please enter count")
Dim input As String = ReadFromUser()
Dim count As Integer = ConvertToInteger(input)
Dim numbers(count - 1) As Integer
For i = 0 To count - 1
    input = ReadFromUser()
    Dim n As Integer = ConvertToInteger(input)
    numbers(i) = n
Next
Sort(numbers)

相关问题