珠一
caojiangfeng
热爱开源,热爱linux
全部博文(213)
hadoop(3)
perl脚本(4)
jvm调优工具(1)
网络编程(1)
用法与技术(10)
程序(12)
日志相关(1)
sed和awk(9)
循环(1)
有用的shell网址(0)
驱动开发(4)
我的shell脚本(9)
shell(12)
应用配置(11)
模块编程(10)
Kernel(8)
条件语句(2)
其他(6)
命令学习(20)
信号及其信号处理(3)
进程(7)
文件系统(1)
系统配置(12)
2018年(4)
2017年(1)
2015年(1)
2014年(5)
2013年(2)
2012年(2)
2011年(21)
2010年(82)
2009年(72)
2008年(23)
RHCE520
FIGHTERB
simiaoxi
lyanxha
huxuelin
liurhyme
wangxinm
bluesea6
联众集群
wb123456
ui56
uccom1
dahaosha
gu111356
cynthia
w3964549
a5940176
fah9394
分类: LINUX
2010-12-20 11:58:18
#!/bin/bashfibionacci(){ num=$1 if [ $num -eq 1 -o $num -eq 2 ] ;then echo 1 return fi if [ $num -lt 1 ];then echo 0 return fi tmp1=`expr $num - 1` tmp2=`expr $num - 2` num1=`fibionacci $tmp1` # num2=`fibionacci $tmp2` num=`expr $num1 + $num2` echo $num return }function init_total{ total=0}
total=
init_total
read number
total=`fibionacci $number`
echo $total
上一篇:Windows远程登陆到ubuntu
下一篇:Ubutun 10.04中的启动项和运行级别
登录 注册