Computer Science, asked by raniaraya3493, 1 year ago

Which operator is used to represent less than or equal to condition in qb64 Ask

Answers

Answered by ramesh87901
5
IF Statements - QB64 


If statements are used to check conditions in the program. The structure of the if statement is as follows:


If <condition> Then

    Do something

ElseIf <condition> Then

    Do something>

Else

    Do something

End If


The Expression Signs (Relational Operators) For If Statements Are:


<     Less than

<=   Less than or equal to

>     Greater than

>=   Greater than or equal to

=     Equal to

<>   Not Equal to


When the condition is met, the code associated with condition will trigger. For example, in a new file type:

Similar questions