当前位置: 技术问答>linux和unix
两个变量相乘
来源: 互联网 发布时间:2016-07-24
本文导语: bash-3.00$ echo $i 0 bash-3.00$ echo $fixedrow 10000 bash-3.00$ a=`$i * $fixedrow` bash: 0: command not found 请问如何实现呢? | $ x=3;y=5;echo $(($x+$y)) 8 $ x=3;y=5;echo $(($x*$y)) 15 $ x=3;y=5;echo `expr $x + $y` 8 $ x...
bash-3.00$ echo $i
0
bash-3.00$ echo $fixedrow
10000
bash-3.00$ a=`$i * $fixedrow`
bash: 0: command not found
请问如何实现呢?
0
bash-3.00$ echo $fixedrow
10000
bash-3.00$ a=`$i * $fixedrow`
bash: 0: command not found
请问如何实现呢?
|
$ x=3;y=5;echo $(($x+$y))
8
$ x=3;y=5;echo $(($x*$y))
15
$ x=3;y=5;echo `expr $x + $y`
8
$ x=3;y=5;echo `expr $x * $y`
15
8
$ x=3;y=5;echo $(($x*$y))
15
$ x=3;y=5;echo `expr $x + $y`
8
$ x=3;y=5;echo `expr $x * $y`
15
|
#vi test.sh,编辑一个shell脚本。
#!/bin/bash
i=90
fixedrow=10000
echo $i * $fixedrow | bc
执行:
#. test.sh
#!/bin/bash
i=90
fixedrow=10000
echo $i * $fixedrow | bc
执行:
#. test.sh
|
$i * $fixedrow
结贴给分吧。
|
不错