额,目测没有这样的程序。
不过可以自己写一个c的实现
#include <stdio.h>#include <stdlib.h>
int main(int argc, char *argv[])
{
int i, res = 0
for (i = 1 i < argc i++)
res += atoi(argv[i])
printf("%d", res)
return 0
}
匆忙写的,可能有问题,见谅。
编译后用 ./a.out 1 2 3 4 5...... numberN调用即可。
Bash代码为:
sum=0
for ((i=1i<=100i++))do
((sum += i))
done
echo $sum
运行结果如下:
输出为5050,结果正确,望采纳~
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)