Q:

Swift program to demonstrate the continue statement

belongs to collection: Swift Looping Programs

0

Here, we will use the continue statement. The continue statement is used to skip the execution of statements in the loop body.

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 continue statement is given below. The given program is compiled and executed successfully.

// Swift program to demonstrate the
// continue statement

var cnt:Int = 0;

while(cnt < 10)
{
    cnt = cnt + 1;
    if(cnt == 5)
    {
        print("Skipping below statements");
        continue;
    }

    print(cnt);
}

Output:

1
2
3
4
Skipping below statements
6
7
8
9
10

...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 0 and check the condition to execute loop body 10 times but we skipped the execution of loop body when the value of cnt is 5 using the continue 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 break statement...