- Hands-On Object:Oriented Programming with C#
- Raihan Taher
- 61字
- 2021-07-02 12:44:36
The do-while construct
The do...while construct checks the condition after executing the step once. Even though the do...while loop is similar to the while loop, the only difference between a do...while loop and a while loop is that a do...while loop will execute the body at least once, even if the criteria is false:
do
{
loop body;
}
while (condition);
推薦閱讀
- Web應用系統開發實踐(C#)
- WebAssembly實戰
- 趣學Python算法100例
- 微服務設計原理與架構
- RTC程序設計:實時音視頻權威指南
- UML+OOPC嵌入式C語言開發精講
- Linux Device Drivers Development
- Mastering Backbone.js
- Python Data Science Cookbook
- Image Processing with ImageJ
- UX Design for Mobile
- C++服務器開發精髓
- Visual FoxPro程序設計習題及實驗指導
- Java程序性能優化實戰
- Mastering Wireless Penetration Testing for Highly Secured Environments