Home »
Swift »
Swift Programs
Swift program to demonstrate the break statement
Here, we are going to demonstrate the break statement in Swift programming language.
Submitted by Nidhi, on June 09, 2021
Problem Solution:
Here, we will use the break statement. The break statement is used to terminate the loop during execution.
Program/Source Code:
The source code to demonstrate the break statement is given below. The given program is compiled and executed successfully.
// Swift program to demonstrate the
// break statement
var cnt:Int = 1;
while(cnt <= 10)
{
print("Hello World");
if(cnt == 5)
{
print("Terminating loop");
break;
}
cnt = cnt + 1;
}
Output:
Hello World
Hello World
Hello World
Hello World
Hello World
Terminating loop
...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 created an integer variable cnt initialized with 1 and check the condition to execute the loop body 10 times but we terminated the loop when the value of cnt is 5 using the break statement.
Swift Looping Programs »