belongs to collection: Swift Looping Programs
Here, we will use a repeat loop. In the repeat loop we check the condition after the loop body that is why it will execute the loop body at least once.
Program/Source Code:
The source code to demonstrate the repeat loop is given below. The given program is compiled and executed successfully.
// Swift program to execute once on // false condition repeat { print("Hello World"); } while(false);
Output:
Hello World ...Program finished with exit code 0 Press ENTER to exit console.
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
import Swift;
Here, we printed the "Hello World" message in the loop body because the loop condition will check after that loop body.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to demonstrate the repeat loop is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
Here, we printed the "Hello World" message in the loop body because the loop condition will check after that loop body.
need an explanation for this answer? contact us directly to get an explanation for this answer