Write a VB program to find and the greatest of three numbers.?
produce a VB program to get and the maximum of 3 numbers.the input needs to be taken by way of a form dependent application and the grestest number should be diplayed in a text about the form
if (number1 > number2)
in the event (number1 > number3)
return(number1)
else
return(number3)
else
in the event (number2 > number3)
return(number2)
else
return(number3)
Leave a Reply
You must be logged in to post a comment.