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.
Program/Source Code:
The source code to demonstrate the break statement 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 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.
need an explanation for this answer? contact us directly to get an explanation for this answer