一.JS流程控制 1. 1.if else var age = 19; if (age > 18){ console.log("成年了"); }else { console.log("小孩子"); } 2.if-else if-else var age = 19; if (age > 18){ console.log("成年了"); }else if (age < 18) { console.log("小孩子"…
运算符 1.算数运算符 运算符 描述 + 加 - 减 * 乘 / 除 % 取余(保留整数) ++ 递加 - - 递减 ** 幂 var x=10; var res1=x++; '先赋值后自增1' 10 var res2=++x; '先自增1后赋值' 12 2.赋值运算符 运算符 例子 等同于 = x = y x = y += x += y x = x + y -= x -= y x = x - y *= x *= y x = x * y /= x /= y x = x / y %= x %= y…
继续Shell的学习.上两篇是关于基本数据类型,基本语法以及运算符相关,这一篇是流程控制相关(if, for, while) 流程控制 if else 流程控制不可为空,如果else没有语句执行,就不要写else if: if condition then command1 command2 ... commandN fi if else: if condition then command1 command2 ... conditionN else command fi if else-if…
if >>> x = int(raw_input("Please enter an integer:")) Please enter an integer:42 >>> if x < 0: ... x = 0 ... print "变为0" ... elif x == 0: ... print "0" ... elif x == 1: ... print "Single" ... el…