Q:

Swift program to demonstrate the logical OR (||) operator

belongs to collection: Swift Basic Programs

0

Here, we will compare variables using the logical OR (||) operator and print the appropriate message on the console screen.

Logical OR (||) operation:

In the case of logical OR operation, if any one condition is true then the result will be true otherwise result is considered false.

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 logical OR (||) operator is given below. The given program is compiled and executed successfully.

// Swift program to demonstrate the
// logical OR (||) operator

import Swift;

var num1=10;
var num2=50;
var num3=10;

if(num1==num2 || num1==num3)
{
    print("Hello");
}
else
{
    print("Hii");
}

Output:

Hello

...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 three variables num1num2num3 that are initialized with 10, 50, 10 respectively. Then we compared variables and performed a logical OR (||) operation to compare numbers and printed the appropriate message on the console screen.

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

total answers (1)

Swift Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Swift program to demonstrate the logical NOT (!) o... >>
<< Swift program to demonstrate the logical AND (&&) ...