Home »
Swift »
Swift Programs
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?
Last Updated : June 03, 2021
Swift - Perform the bitwise NOT operation
Here, we will create an integer variable and use the Bitwise NOT (!) operator to invert the if condition.
Swift program to perform the bitwise NOT operation
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 »
Advertisement
Advertisement