Home »
Swift »
Swift Programs
Swift program to demonstrate the ternary operator
Here, we are going to demonstrate the ternary operator in Swift programming language.
Last Updated : June 02, 2021
Problem Solution
Here, we will find the largest number between two numbers using the ternary operator and print the result on the console screen.
Program/Source Code
The source code to demonstrate the ternary operator is given below. The given program is compiled and executed successfully.
// Swift program to demonstrate the
// ternary condition operator
import Swift;
var num1:Int=10;
var num2:Int=20;
var large:Int=0;
large = (num1>num2 ? num1 : num2);
print("Largest number is: ",large);
Output
Largest number is: 20
...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 integer variables num1, num2, large that are initialized with 10, 20, 0. Then we found the largest number between two numbers using the ternary operator and printed the result on the console screen.
Swift Conditional Statements Programs »
Advertisement
Advertisement