Swift program to perform the bitwise NOT operation

Here, we are going to learn how to perform the bitwise NOT operation in Swift programming language?
Submitted by Nidhi, on June 03, 2021

Problem Solution:

Here, we will create an integer variable and use the Bitwise NOT (!) operator to invert the if condition.

Program/Source Code:

The source code to perform the bitwise NOT (!) operation is given below. The given program is compiled and executed successfully.

// Swift program to the
// perform bitwise NOT (!) operation

import Swift;

var num = 5;

if(!(num==5)){
    print("Hello")
}
else{
    print("Hiii")
}

Output:

Hiii

...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 used if condition to demonstrate the bitwise NOT (!) operator.

if(!(num==5)){
    fmt.Println("Hello")
}else{
    fmt.Println("Hiii")
}  

In the above code, if the condition will be evaluated TRUE, if the value of variable num is not equal to 5 otherwise else part will be executed.

Swift Basic Programs »



Related Programs



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.