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九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章

shell编程--九九乘法表

用shell编程实现打印九九乘法表

shell脚本实现九九乘法表

入门经典 九九乘法表 双重循环之shell脚本

linux下shell编写九九乘法表

SHELL/Python实现九九乘法表