十八 Shell until迴圈

2021-06-28 07:34:46 字數 490 閱讀 2723

until 迴圈執行一系列命令直至條件為 true 時停止。until 迴圈與 while 迴圈在處理方式上剛好相反。一般while迴圈優於until迴圈,但在某些時候,也只是極少數情況下,until 迴圈更加有用。

until 迴圈格式為:

until command

do statement(s) to be executed until command is true

done

command 一般為條件表示式,如果返回值為 false,則繼續執行迴圈體內的語句,否則跳出迴圈。

例如,使用 until 命令輸出 0 ~ 9 的數字:

#!/bin/basha=

0until[!

$a-lt10]

doecho $a

a=`expr $a+1`

done

執行結果:

012

3456

789

100題 第十八題(約瑟夫迴圈)

一,題目 n個數字 0,1,n 1 形成乙個圓圈,從數字0開始,每次從這個圓圈中刪除第m個數字 第乙個為當前數字本身,第二個為當前數字的下乙個數字 當乙個數字刪除後,從被刪除數字的下乙個繼續刪除第m個數字。求出在這個圓圈中剩下的最後乙個數字。三,原始碼 include include malloc....

C 資料結構之迴圈鍊錶 十八

c stl中的鍊錶 include list.h 我做的鍊錶 using namespace std intmain cout 測試一下迴圈 endl listiterator int iter intlist cout iter.first endl cout iter.next endl cou...

跟燕十八學習PHP 第六天 迴圈

迴圈結構 程式語言,一般都有 for,while,do while迴圈 先看while 假設某人 心理強度 是 100 每打他一拳,心理強度減少1,當心理強度 30,就能打服.while 表示式 意思是 判斷表示式是否為真,如果為真,則執行語句.執行完語句之後,再回到while開始處,判斷表示式是否...