python的內(nèi)置函數(shù)有哪些 shell if else判斷兩數(shù)相等?
shell if else判斷兩數(shù)相等?if [$x -eq $y]------------if [ $x -eq $y ] ----------[] 兩邊都要有空格 echo "input two
shell if else判斷兩數(shù)相等?
if [$x -eq $y]------------if [ $x -eq $y ] ----------[] 兩邊都要有空格 echo "input two number:"read xread yif [ $x -eq $y ]thenecho "equal!"elseecho "not equal"fi