linux shell 可以用户定义函数,然后在 shell 脚本中可以随便调用. 以一个计算两数之和的函数为例: #! /bin/bash # 函数定义 sum(){ return $(($1+$2)) } echo now please input a num: read num echo please input another num: read num_ #函数调用 sum $num $num_ echo "The result is: $?" 函数参数 在Shell中,调用…
格式不要括号,最后有end for 循环变量 = 表达式1:表 2:表 3 表1:初值 表2:步长 表3:终值 求圆周率:π/4=1 - 1/3 + 1/5 -1/7+...+(-1)^(n+1)*(1/2*n-1) y = 0; g = -1; n = input('n = ?'); for 1:n g = -g; y = y + g *1/(2 * i - 1); end pai = 4 * y 或者 n = input ('n = ?'); x = 1 : 2 :(2 *…