Swift program to demonstrate the comparison operators

Here, we are going to demonstrate the comparison operators in Swift programming language.
Submitted by Nidhi, on May 30, 2021

Problem Solution:

Here, we will compare the value of variables using comparison operators and print the appropriate message on the console screen.

Program/Source Code:

The source code to demonstrate the comparison operators is given below. The given program is compiled and executed successfully.

// Swift program to demonstrate the 
// comparison operators

import Swift;

var num1=10;
var num2=20;

if(num1 == num2)
{
    print("Num1 is equal to Num2");
}

if(num1 != num2)
{
    print("Num1 is not equal to Num2");
}

if(num1 < num2)
{
    print("Num1 is less than Num2");
}

if(num1 > num2)
{
    print("Num1 is greater than Num2");
}

if(num1 <= num2)
{
    print("Num1 is less than or equal to Num2");
}

if(num1 >= num2)
{
    print("Num1 is greater than or equal to Num2");
}

Output:

Num1 is not equal to Num2
Num1 is less than Num2
Num1 is less than or equal to Num2

...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 two variables num1, num2 that are initialized with 10, 20 respectively. Then we compared both variables comparison or relational operators and printed the appropriate messages on the console screen.

Swift Basic Programs »



Related Programs




Comments and Discussions!

Load comments ↻






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