美文网首页
6.5 Greater Than or Equal 大于或等于

6.5 Greater Than or Equal 大于或等于

作者: 刘板栗 | 来源:发表于2017-02-22 17:47 被阅读41次

    Check if a value is greater than or equal to another.

    检查值是否大于或等于另一个值。

    Each value is compared to the next one in order, and results are combined in one output. For example, 3 >= 2 >= 2 is true, while 4 >= 4 >= 10 is false.

    每个值按顺序与下一个值进行比较,结果合并在一个输出口中。
    例如,3 > 或 = 2 > 或 = 2为真,而 4 > 或 = 4 > 或 = 10为假。

    You can right-click to add more values to compare (will only output 1 if every value is greater or equal to the subsequent one) or change the type.

    右键添加更多输入口(如果每个值大于或等于后续值,则只输出1个),或更改类型。

    输入口

    Input 输入
    The base value.
    基础值。

    Input 输入
    The value to compare to the base.
    和基础值做比较的值。

    输出口

    Output 输出
    A boolean that is true if the base value is greater than or equal to the subsequent values.
    如果基础值大于或等于后续值,则布尔值为真。


    相关模块

    And Equals 等于 Equals Exactly 完全等于 Greater Than 大于 Less Than 小于 Less Than or Equal 小于或等于 Not 翻转 Or 或


    相关教程

    3. 和代码的区别 Coming From Code
    看 Origami 跟编程有什么不一样。


    相关文章

      网友评论

          本文标题:6.5 Greater Than or Equal 大于或等于

          本文链接:https://www.haomeiwen.com/subject/tzcfwttx.html