Visual Basic - Relational operators
The main use of the relational operators is in control of conditional statements. thanks to these, we can decide which direction to continue the conditional statements, or for example, how many iterations of the cycle need to perform.Visual Basic .NET
Other pieces of example codes:if x>&Habc then y = x / &Ha ' y = 466 end if
if i=5 then exit do end if
if y<5 then y = y/ 3.14 ' y = 1.234 end if
a = 4 >= 2
b = x <= 12
y <> 25
Relational operators in another programming language: