Difference between revisions of "Mixly Block Category - Logic"
(→Relational Operators) |
(→Relational Operators) |
||
Line 1: | Line 1: | ||
=Relational Operators= | =Relational Operators= | ||
− | Takes two inputs -- left and right. Performs the requested relational operator (see below). If the statement is true (correct), then a boolean '''true''' is returned. If false (incorrect), then a boolean '''false''' is returned. | + | Takes two inputs -- left and right. Performs the requested relational operator (see below). If the statement is true (correct), then a boolean '''true''' is returned. If false (incorrect), then a boolean '''false''' is returned. Boolean values are useful in '''if''' statements to decide to do a set of blocks or not. And in '''loops''' to continue looping or not. |
*Left Input - The first value that will be used in the relational statement. | *Left Input - The first value that will be used in the relational statement. | ||
Line 55: | Line 55: | ||
Example 3: [5 '''≥''' 4], returns '''true'''. | Example 3: [5 '''≥''' 4], returns '''true'''. | ||
+ | |||
+ | |||
+ | Read more here: https://www.arduino.cc/en/Reference/If | ||
=Boolean Operations= | =Boolean Operations= |
Revision as of 01:27, 16 February 2017
Contents
Relational Operators
Takes two inputs -- left and right. Performs the requested relational operator (see below). If the statement is true (correct), then a boolean true is returned. If false (incorrect), then a boolean false is returned. Boolean values are useful in if statements to decide to do a set of blocks or not. And in loops to continue looping or not.
- Left Input - The first value that will be used in the relational statement.
- Relational Operator - The operator used -- equal, not equal, less than, left than or equal, greater than, greater than or equal.
- Second Input - The second that will be used in the relational statement.
Equal
Compares the two inputs for equality. If equal, then true is returned, otherwise false is returned.
Example 1: [5 = 5], returns true.
Example 2: [5 = 6], returns false.
Not Equal
Compares the two inputs being different. If different (not equal), then true is returned, otherwise false is returned. This is the reverse of the Equal operator.
Example 1: [5 ≠ 5], returns false.
Example 2: [5 ≠ 6], returns true.
Less Than
Compares the Left Input is less than the Right Input. If correct, then true is returned, otherwise false is returned.
Example 1: [5 < 6], returns true.
Example 2: [5 < 5], returns false.
Example 3: [5 < 4], returns false.
Less Than Or Equal
Compares the Left Input is less than or equal to the Right Input. If correct, then true is returned, otherwise false is returned.
Example 1: [5 ≤ 6], returns true.
Example 2: [5 ≤ 5], returns true.
Example 3: [5 ≤ 4], returns false.
Greater Than
Compares the Left Input is greater than the Right Input. If correct, then true is returned, otherwise false is returned.
Example 1: [5 > 6], returns true.
Example 2: [5 > 5], returns false.
Example 3: [5 > 4], returns true.
Greater Than Or Equal
Compares the Left Input is greater than or equal to the Right Input. If correct, then true is returned, otherwise false is returned.
Example 1: [5 ≥ 6], returns false.
Example 2: [5 ≥ 5], returns true.
Example 3: [5 ≥ 4], returns true.
Read more here: https://www.arduino.cc/en/Reference/If