Bootstrap

C高级DAY02:shell指令/shell脚本

第一章:shell指令

 第二章:shell脚本

作业:

1.用递归实现斐波那契数列

2.x=9999 ----->1001 1001 1001 1001     count=1

         x-1  ----->1001 1001 1001 1000      &:有0则0,全1为0

         x     ----->1001 1001 1001 1000      count=2

         x-1  ----->1001 1001 1001  0111      

         x     ----->1001 1001 1001  0000     count=3

.....countx=8

3.     1.str0数组长度不够,会发生越界        

        2.str1=10时,str0数组长度不够,会发生越界

 

;