- 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);
推薦閱讀
- Learning Apex Programming
- Ceph Cookbook
- 云原生Spring實戰
- Hadoop+Spark大數據分析實戰
- Building a Recommendation Engine with Scala
- Python自然語言處理(微課版)
- Python Data Analysis(Second Edition)
- 數據結構(C語言)
- 青少年Python編程入門
- 程序員修煉之道:通向務實的最高境界(第2版)
- Windows內核編程
- 時空數據建模及其應用
- C++程序設計
- Application Development with Parse using iOS SDK
- Enterprise Application Architecture with .NET Core