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巢狀資料型別
- JS的判斷語句:判斷、迴圈JS
- Swift,迴圈及判斷Swift
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- C#練習,應用for,while,do-while迴圈C#While
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈While
- 5.判斷和迴圈
- c語言中,while(1)語句使用break語句跳出迴圈C語言While
- PHP For & While 迴圈PHPWhile
- Java 迴圈 - for, while 及 do…whileJavaWhile
- 04流程控制 for迴圈,while迴圈While
- for迴圈、break和continue、二重迴圈
- C語言中迴圈語句while 中判斷條件出現 || 和 && 的區別C語言While
- python條件判斷與迴圈Python
- Python之判斷迴圈語句Python
- python while迴圈PythonWhile
- linux while 迴圈LinuxWhile
- while迴圈補充While
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- Python基礎:條件判斷 & 迴圈Python
- python迴圈語句判斷的使用Python
- JavaScript中的while迴圈JavaScriptWhile
- python-while迴圈PythonWhile
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- 3. Python中的分支判斷、迴圈Python
- C語言學習【3】——判斷與迴圈C語言
- C#開發Unity遊戲教程迴圈遍歷做出判斷及Unity遊戲示例C#Unity遊戲
- java學習之while迴圈JavaWhile
- mysql 中 while 迴圈的用法。MySqlWhile
- Object-C,迴圈語句for,while,do-whileObjectWhile
- javascript快速入門3--分支判斷與迴圈JavaScript
- 如何判斷一個js物件是否存在迴圈引用JS物件