linux下有没有对一列数字进行求和的命令

linux下有没有对一列数字进行求和的命令,第1张

额,目测没有这样的程序。

不过可以自己写一个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调用即可。

[root@zuozhang003 tmp]# cat test.sh

#!/bin/bash

list=$@

echo $list

num=0

for i in `echo $list`

do

num=$((num+i))

done

echo $num

[root@zuozhang003 tmp]# ./test.sh 1 2 3 4

1 2 3 4

10

明白了吗?


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7355822.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-04
下一篇 2023-04-04

发表评论

登录后才能评论

评论列表(0条)

保存