Integer comparison: Difference between revisions

m
Line 930:
y.i = Val(Input())
 
Print("The first integer is ")
If x < y
Print( "The first integer is less than the second integer.")
ElseIf x = y
Print("The first integer is equal to the second integer.")
ElseIf x > y
Print("The first integer is greater than the second integer.")
EndIf
Print (" the second integer.")
 
Repeat:Until Inkey() <> ""</lang>
Anonymous user