错误的shell函数来计算偶数
对于一项作业,我必须编写一个函数,该函数在提供数字序列时会打印偶数数字。 我使用了以前分配的代码(1在数字为偶数和0数字为奇数时打印) 我现在的问题是我的功能一直在打印0。我究竟做错了什么? 这是我的脚本: #!/usr/bin/bash # File: nevens.sh # Write a function called nevens which prints the number of even numbers when provided with a sequence of numbers. # Check: input nevens 42 6 7 9 33 = output 2 function nevens { local sum=0 for element in $@ do …