首页 > 代码库 > Ruby_day[1]控制流(if, unless)
Ruby_day[1]控制流(if, unless)
summary:
1: if, elsif, else.注意结束if时后面加end
2: unless, else
- How to use
if
,else
, andelsif
- How to use comparators / relational operators like
==(相等)
,!=(不等)
,<
,<=
,>
, and>=
How to use boolean / logical operators like &&(与)
, ||(或)
, and !(非)
1 a = 102 b = 113 if a < b4 print "a is less than b!"5 elsif b > a6 print "b is less than a!"7 else8 print "b is equal to a!"9 end
1 problem = false2 print "Good to go!" unless problem3 #除非有问题(problem=true时不打出来),否则打印出来
多个逻辑运算结合,用括号 括起来
1 ( 1 == 1 ) && ( 2 == 2 ) // true2 ( 1 == 2 ) || ( 2 == 2 ) // true3 !( false ) // true
Ruby_day[1]控制流(if, unless)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。