编写一个shell脚本,求斐波那契数列(1 1 2 3 5 8 13 21 .)的前10项及其
问题描述:
编写一个shell脚本,求斐波那契数列(1 1 2 3 5 8 13 21 .)的前10项及其
答
#!/bin/bash
i=1
j=0
for (( k=0; k