Q:

Swift program to demonstrate the break statement

belongs to collection: Swift Looping Programs

0

Here, we will use the break statement. The break statement is used to terminate the loop during execution.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift program to demonstrate the continue statemen... >>
<< Swift program to execute the loop once on false co...