#!/bin/bash
# *********************************************************#
# #
# * Author : 藻头男 #
# * QQ邮箱 : 2322944912@qq.com #
# * Create time : 2024-01-02-21-00-00 #
# * Filename : cheng.sh #
# * Description : This is Shell scripts #
# #
# #
# ********************************************************#clear #清屏执行
#第一种方法for循环for i in {1..9}dofor o in `seq $i`doecho -n -e "$o x $i = $[$i*$o]\t"doneechodone echo "" #第二种方法while循环a=0while [ $a -lt 9 ]dolet a++b=0while [ $b -lt $a ]dolet b++echo -ne "$b x $a = $[$b*$a]\t" done echodone
感谢观看!希望能够帮助到大家!