Shell指令碼:列印九九乘法表

來源:互聯網
上載者:User

標籤:http   ar   使用   for   檔案   div   on   2014   art   

Shell指令碼:列印九九乘法表

今天用三種不同的方式實現了Shell指令碼列印的九九乘法表,代碼如下

方法1:使用for迴圈(a.sh)

#!/bin/shfor i in {1,2,3,4,5,6,7,8,9}do  for j in {1,2,3,4,5,6,7,8,9}  do    ((product=$i*$j))    echo -ne $i\*$j=$product"\t"  done  echodoneexit 0

方法2:使用while迴圈(b.sh)

#!/bin/shi=1j=1while [ "$i" -ne 10 ]do  while [ "$j" -ne 10 ]  do    ((product=$i*$j))    echo -ne $i\*$j=$product"\t"    ((j++))  done  j=1  ((i++))  echodoneexit 0

方法3:使用for迴圈(c.sh)

#!/bin/shfor((i=1;i<10;i++))do   for((j=1;j<10;j++))  do    ((product=$i*$j))    echo -ne $i*$j=$product"\t"  done  echodoneexit 0

註:命令“echo -ne XXX”中,參數n代表輸出完畢不換行,e代表支援逸出字元

三個指令碼的運行:

END

  • 相關文章推薦:
  • Linux shell指令碼實現ftp自動上傳備份檔案
  • linux shell編程之輸入輸出重新導向
  • 如何在shell指令碼裡傳遞一個變數給awk
  • 本文來自:愛好Linux技術網
  • 本文連結:http://www.ahlinux.com/shell/9142.html

Shell指令碼:列印九九乘法表

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.