- Learn Swift by Building Applications
- Emil Atanasov
- 177字
- 2021-06-25 22:13:46
Basic flow statements
What are basic flow statements? These are several statements which help you to structure the program code in a way that allows you to do different action(s) based on the data stored in particular variables. We will learn how to execute just part of the code if a certain condition is met (the condition could be a pretty complex Boolean expression). Then, we will find a way to execute different actions several times in a loop. The next thing will be to learn how to repeat things until a condition is met and to stop executing statements once the condition is not satisfied. Using flow-control statements, we can construct pretty complex code chunks, similar to what we can express with regular text writing. To develop a program, we should first create an algorithm (a sequence of steps) which leads to the desired result, taking into account all external and internal conditions. Based on this sequence, we can then develop a program, using all flow operators. But let's get familiar with some forms of them.
- Facebook Application Development with Graph API Cookbook
- TypeScript入門與實戰
- INSTANT FreeMarker Starter
- Hands-On Data Structures and Algorithms with JavaScript
- Python爬蟲開發與項目實戰
- Getting Started with SQL Server 2012 Cube Development
- FFmpeg入門詳解:音視頻原理及應用
- R Data Analysis Cookbook(Second Edition)
- 區塊鏈底層設計Java實戰
- Python機器學習算法: 原理、實現與案例
- Mastering ArcGIS Enterprise Administration
- JavaScript應用開發實踐指南
- Simulation for Data Science with R
- 精通Spring:Java Web開發與Spring Boot高級功能
- 微前端設計與實現