|
|
(6 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
| ''result'' = ''x'' OR ''y'' | | ''result'' = ''x'' Or ''y'' |
|
| |
|
| '''Description'''
| | == Description == |
|
| |
|
| OR returns the logical disjunction of two expressions. ''result'' is TRUE, if one or both expressions ''x'' and ''y'' evaluate to TRUE, otherwise, ''result'' is FALSE.
| | Or returns the logical disjunction of two expressions. ''result'' is TRUE, if one or both expressions ''x'' and ''y'' evaluate to TRUE, otherwise, ''result'' is FALSE. |
|
| |
|
| '''Example'''
| | == Example == |
|
| |
|
| <pre> | | <tabber> |
| REM OR Example
| | JavaScript= |
| 'OR performs logical and bitwise disjunction | | <syntaxhighlight lang="JavaScript"> |
| DIM Test1, Test2, Test3, x, y
| | // Or Example |
| | /* Or performs logical and bitwise disjunction */ |
| | |
| | var Test1, Test2, Test3, x, y; |
| | x = 1; |
| | y = 5; |
| | Test1 = x > 0 || y < 10; |
| | Test2 = x > 0 || y > 10; |
| | Test3 = x || y; |
| | NSB.Print("Logical:"); |
| | NSB.Print(" x > 0 || y < 10 = " + Test1); |
| | NSB.Print(" x > 0 || y > 10 = " + Test2); |
| | </syntaxhighlight> |
| | |-| |
| | BASIC= |
| | <syntaxhighlight lang="vb.net"> |
| | Rem Or Example |
| | 'Or performs logical and bitwise disjunction |
| | Dim Test1, Test2, Test3, x, y |
| x = 1 | | x = 1 |
| y = 5 | | y = 5 |
| Test1 = x > 0 OR y < 10 | | Test1 = x > 0 Or y < 10 |
| Test2 = x > 0 OR y > 10 | | Test2 = x > 0 Or y > 10 |
| Test3 = x OR y | | Test3 = x OR y |
| PRINT "Logical:"
| | Print "Logical:" |
| PRINT " x > 0 OR y < 10 = " & Test1
| | Print " x > 0 or y < 10 = " & Test1 |
| PRINT " x > 0 OR y > 10 = " & Test2
| | Print " x > 0 or y > 10 = " & Test2 |
| </pre> | | </syntaxhighlight> |
| | </tabber> |
|
| |
|
| '''Output'''
| | == Output == |
|
| |
|
| <pre> | | <pre> |
| Logical: | | Logical: |
| x > 0 OR y < 10 = True | | x > 0 or y < 10 = True |
| x > 0 OR y > 10 = True | | x > 0 or y > 10 = True |
| </pre> | | </pre> |
|
| |
|
| '''Related Items'''
| | == Related Items == |
| | |
| | [[and|And]], [[eqv|Eqv]], [[imp|Imp]], [[not|Not]], [[xor|Xor]] |
| | |
| | [[Category:Language Reference]] |
|
| |
|
| [[and|AND]], [[eqv|EQV]], [[imp|IMP]], [[not|NOT]], [[xor|XOR]] | | [[Category:Logical Operators]] |
result = x Or y
Description
Or returns the logical disjunction of two expressions. result is TRUE, if one or both expressions x and y evaluate to TRUE, otherwise, result is FALSE.
Example
// Or Example
/* Or performs logical and bitwise disjunction */
var Test1, Test2, Test3, x, y;
x = 1;
y = 5;
Test1 = x > 0 || y < 10;
Test2 = x > 0 || y > 10;
Test3 = x || y;
NSB.Print("Logical:");
NSB.Print(" x > 0 || y < 10 = " + Test1);
NSB.Print(" x > 0 || y > 10 = " + Test2);
Rem Or Example
'Or performs logical and bitwise disjunction
Dim Test1, Test2, Test3, x, y
x = 1
y = 5
Test1 = x > 0 Or y < 10
Test2 = x > 0 Or y > 10
Test3 = x OR y
Print "Logical:"
Print " x > 0 or y < 10 = " & Test1
Print " x > 0 or y > 10 = " & Test2
Output
Logical:
x > 0 or y < 10 = True
x > 0 or y > 10 = True
Related Items
And, Eqv, Imp, Not, Xor