shell九九乘法表
Posted 大哥哥丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell九九乘法表相关的知识,希望对你有一定的参考价值。
#!/bin/bash for x in {1..9}; do for y in {1..9}; do if [ $x -ge $y ]; then echo -ne "$y*$x=$[$y*$x] \t" fi done echo done
以上是关于shell九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章