break 用于绕过正常循环条件并中止do,for,或while循环。 ... void loop() { ... 此时if 语句的条件i> 100 成立,所以Arduino将执行 break; 语句结束循环。
確定! 回上一頁