gpt4 book ai didi

ubuntu - 将整数作为参数并打印这些数字的总和,但获取命令未找到错误

转载 作者:行者123 更新时间:2023-12-04 19:25:26 25 4
gpt4 key购买 nike

我想从命令行获取参数并打印整数的总和。但是如果没有给出参数,那么它应该给我总计为 0。
示例 vi sum.sh 包含以下代码

total=0

for i in $@; do
(( total+=i ))
done

echo "The total is $total"

bash sum.sh那么这应该给我输出为0
同样,如果我给 bash sum.sh 1 2然后输出为 3,这是正确的,但在没有给出参数时它不起作用。
我收到错误 total: command not found .

最佳答案

尝试这个:

total=0

for i in $@; do
total=$(($total+$i ))
done

echo "The total is $total"
当你使用一个变量的值时,它前面需要一个美元符号。
最重要的是,您需要 $((...))来执行计算。
编辑:例子
我已将这段脚本放在一个文件中,名为 test.sh并进行了以下测试(及其结果):
Prompt> sh test.sh 1 2 6
The total is 9

关于ubuntu - 将整数作为参数并打印这些数字的总和,但获取命令未找到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71602502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com