c# while迴圈_counter++_內含if判斷_break
//while迴圈
counter = 0;
while (counter < this._deductSchedView.Count)
{
DeductSchedViewItem CSS0S0000 = this._deductSchedView[counter];
if (this._deductSchedNbr == Convert.ToInt64(CSS0S0000.DeductSchedNbr))
{
this.grdList.Rows[counter].Selected = true;
break;
}
counter++;
}
//測試while迴圈及內嵌if及break
//實現功能:如果自1新增到,就列印顯示在文字框中,否則繼續累加
int counter = 0;
while (counter < 11)
{
if (counter==10)
{
MessageBox.Show("已經累加到");
//經測試是break是退出其while迴圈,執行while下面的程式碼 MessageBox.Show("哈哈break之後執行的程式碼");
break;
}
//否則沒到繼續累加counter
counter++;
}
//為了測試break是否跳出其所在的while迴圈加下述程式碼
MessageBox.Show("哈哈break之後執行的程式碼");
}
counter = 0;
while (counter < this._deductSchedView.Count)
{
DeductSchedViewItem CSS0S0000 = this._deductSchedView[counter];
if (this._deductSchedNbr == Convert.ToInt64(CSS0S0000.DeductSchedNbr))
{
this.grdList.Rows[counter].Selected = true;
break;
}
counter++;
}
//測試while迴圈及內嵌if及break
//實現功能:如果自1新增到,就列印顯示在文字框中,否則繼續累加
int counter = 0;
while (counter < 11)
{
if (counter==10)
{
MessageBox.Show("已經累加到");
//經測試是break是退出其while迴圈,執行while下面的程式碼 MessageBox.Show("哈哈break之後執行的程式碼");
break;
}
//否則沒到繼續累加counter
counter++;
}
//為了測試break是否跳出其所在的while迴圈加下述程式碼
MessageBox.Show("哈哈break之後執行的程式碼");
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-717468/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python04: while迴圈語句 break continue for in 迴圈PythonWhile
- c#入門-while迴圈C#While
- while迴圈以及do while迴圈While
- while + else 使用,while死迴圈與while的巢狀,for迴圈基本使用,range關鍵字,for的迴圈補充(break、continue、else) ,for迴圈的巢狀,基本資料型別及內建方法While巢狀資料型別
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- JS的判斷語句:判斷、迴圈JS
- C#練習,應用for,while,do-while迴圈C#While
- for 迴圈與 while 迴圈While
- while迴圈 case迴圈While
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈While
- 5.判斷和迴圈
- c語言中,while(1)語句使用break語句跳出迴圈C語言While
- PHP For & While 迴圈PHPWhile
- python while迴圈PythonWhile
- Python之判斷迴圈語句Python
- python條件判斷與迴圈Python
- Java 迴圈 - for, while 及 do…whileJavaWhile
- for迴圈、break和continue、二重迴圈
- C語言中迴圈語句while 中判斷條件出現 || 和 && 的區別C語言While
- 04流程控制 for迴圈,while迴圈While
- Python基礎:條件判斷 & 迴圈Python
- python迴圈語句判斷的使用Python
- while迴圈補充While
- python-while迴圈PythonWhile
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- 3. Python中的分支判斷、迴圈Python
- 七 while迴圈語句While
- sass的迴圈for,while,eachWhile
- JavaScript中的while迴圈JavaScriptWhile
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- 分別使用while迴圈、do…while迴圈和for迴圈輸出1~100之間的所有偶數While
- C語言學習【3】——判斷與迴圈C語言
- 15-python之while迴圈PythonWhile
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- PbootCMS判斷第一個迴圈項,並新增 class條件判斷和標籤boot
- 如何判斷一個js物件是否存在迴圈引用JS物件