Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

trying to write a program that displays the minimum number when typed in.. heres what i have and it keeps displaying zero no matter what is entered..(visual basic.net) button1_Click(.....) dim num as double dim min as double do while num<> -1 If num <= min then min=num end if num = inputbox("Enter a nonnegative number. Enter -1 to terminate entering numbers.") loop messagebox.show("Smallest number:" & min) end sub End class

OpenStudy (anonymous):

I think you have to initialize the variable min (Before the loop write min = some big number, or when you create it Dim min as Double = some big number)

OpenStudy (anonymous):

Ohterwise it might be automatically initialised at zero, which is obviously less than any positive number, so it will stay at 0.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!