shell腳本之九九乘法表

這是一個for循環嵌套使用的案例,實現代碼如下: #!/bin/bash color='\E[47;30m' RES='\E[0m' for num1 in `seq 9` do     for num2 in `seq 9`     do          if [ $num1 -ge $num2 ];then               if (((num1*num2)>9));then   
相關文章
相關標籤/搜索