查看If(条件判断语句) 和 比较运算符的源代码
←
If(条件判断语句) 和 比较运算符
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你刚才请求的操作只对属于该用户组的用户开放:
用户
您可以查看并复制此页面的源代码:
if,它与比较运算符一起使用,用于判断条件是否满足,如一个输入值是否大于指定值。if语句语法格式: <pre style="color:dimgray"> if (someVariable > 50) { // 在此添加执行代码 } </pre> 上面的程序为判断someVariable 是否大于50。如果大于,执行指定代码。换句话说,如果if后圆括号中的语句为真,则执行大括号中的代码。反之,则跳过大括号中的代码。 if语句后的大括号可以省略。'''如果这样写,下一行的语句(以分号结尾)将是唯一条件语句'''。 <pre style="color:dimgray"> if (x > 120) digitalWrite(LEDpin, HIGH); if (x > 120) digitalWrite(LEDpin, HIGH); if (x > 120){ digitalWrite(LEDpin, HIGH); } if (x > 120){ digitalWrite(LEDpin1, HIGH); digitalWrite(LEDpin2, HIGH); } // 以上几种书写方式都正确 </pre> 在圆括号中的语句需要使用一个或多个运算符: <font color="darkcyan">'''比较运算符:'''</font> <pre style="color:dimgray"> x == y (x is equal to y) x != y (x is not equal to y) x < y (x is less than y) x > y (x is greater than y) x <= y (x is less than or equal to y) x >= y (x is greater than or equal to y) </pre> <font color="mediumpurpul">'''警告:'''</font><br/> 谨防误使用单等号(例如if(x = 10))。单等号是赋值运算符,是用来设置x的值为10(将值10存入变量x中)。使用双等号(例如if(x == 10)),这是比较运算符,用来测试x是否等于10。后者只有当x等于10时为真,而前者总是真。 这是因为C语言中 该语句if(x=10)是这样执行的:10被赋值给了x(记住单等号是[[= (赋值运算符)|赋值运算符]]) This is because C evaluates the statement if (x=10) as follows: 10 is assigned to x (remember that the single equal sign is the assignment operator), so x now contains 10. Then the 'if' conditional evaluates 10, which always evaluates to TRUE, since any non-zero number evaluates to TRUE. Consequently, if (x = 10) will always evaluate to TRUE, which is not the desired result when using an 'if' statement. Additionally, the variable x will be set to 10, which is also not a desired action. if can also be part of a branching control structure using the [[if...else]] construction. [[Arduino语法参考 | 返回Arduino语法参考列表]] 原文出处:[http://www.arduino.cc/en/Reference Arduino官网] 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛]
返回
If(条件判断语句) 和 比较运算符
。
导航菜单
个人工具
登录
名字空间
页面
讨论
不转换
变种
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
YF-论坛提问
YFRobot-直营店
YFRobot-企业店
Arduino
Arduino之入门篇
Arduino入门教程
Arduino语法参考
Arduino库
Arduino核心代码
编程平台
Mixly库
Mind+库
MakeCode扩展
传感器系列
积木式传感器系列
黑板传感器系列
蓝板传感器系列
Micro:Bit
Micro:Bit 通用基础教程
Valon智能车
Valon-I
帮助
帮助
wiki语法参考
工具箱
链入页面
相关更改
特殊页面
页面信息