PPAP 百度

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

 

posted @ 2016-12-06 13:06  大哥哥丶  阅读(254)  评论(0编辑  收藏  举报