shell script to print the multiplication table

  • shell script to print the multiplication table
#!/bin/bash

for i in {1..9}
do
       for j in {1..9}
       do
          if [ $j -le $i ]
          then
                echo -n "${j}X${i}=$(($i*$j))  "
          fi
       done

       echo
done

 

Guess you like

Origin www.cnblogs.com/tanxiaojuncom/p/11432082.html